mirror of
https://github.com/lihop/godot-xterm.git
synced 2025-05-23 19:25:32 +02:00
Remove references to terminal.gd
This commit is contained in:
parent
e563a15ce2
commit
15e5b2b8c7
10 changed files with 68 additions and 135 deletions
|
@ -1,7 +1,5 @@
|
|||
@tool
|
||||
extends "res://addons/godot_xterm/terminal.gd"
|
||||
|
||||
signal theme_changed
|
||||
extends Terminal
|
||||
|
||||
|
||||
func _ready():
|
||||
|
@ -24,10 +22,3 @@ func _ready():
|
|||
write("\u001b[1mL\u001b[0m") # Bold.
|
||||
write("\u001b[3mL\u001b[0m") # Italic.
|
||||
write("\u001b[1m\u001b[3mL\u001b[0m") # Bold Italic.
|
||||
|
||||
|
||||
func _notification(what):
|
||||
super._notification(what)
|
||||
match what:
|
||||
NOTIFICATION_THEME_CHANGED:
|
||||
call_deferred("emit_signal", "theme_changed")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue