mirror of
https://github.com/Relintai/pandemonium_cms.git
synced 2024-11-14 09:37:19 +01:00
14 lines
389 B
GDScript
14 lines
389 B
GDScript
tool
|
|
extends AcceptDialog
|
|
|
|
signal on_entry_class_selected(entry_class)
|
|
|
|
func _notification(what):
|
|
if what == NOTIFICATION_INSTANCED:
|
|
get_ok().set_text("Close")
|
|
|
|
get_node("HFlowContainer/AddTitleTextButton").connect("pressed", self, "_add_title_text_button_pressed")
|
|
|
|
func _add_title_text_button_pressed() -> void:
|
|
emit_signal("on_entry_class_selected" , "WebPageEntryTitleText")
|