Godot-TextEditor/addons/text_editor/TE_MetaInfo.gd
teebarjunk 8fd5a31874 1.4
2021-10-18 15:20:19 -04:00

23 lines
526 B
GDScript

tool
extends "res://addons/text_editor/TE_RichTextLabel.gd"
func _ready():
var _e
_e = editor.connect("file_selected", self, "_file_selected")
_e = editor.connect("file_saved", self, "_file_saved")
#func _resized():
# add_constant_override("table_hseparation", int(rect_size.x / 6.0))
func _file_selected(_file_path:String):
yield(get_tree(), "idle_frame")
_redraw()
func _file_saved(_file_path:String):
_redraw()
func _redraw():
var tab = editor.get_selected_tab()
if tab:
tab.helper.generate_meta(tab, self)