update edit menu

This commit is contained in:
Nitwel 2023-11-26 12:18:08 +01:00
parent 9bab4348af
commit 42ce37facb

View File

@ -17,12 +17,11 @@ var pages = 0
var selected_device = null var selected_device = null
# Called when the node enters the scene tree for the first time. # Called when the node enters the scene tree for the first time.
func _ready(): func _ready():
next_page_button.get_node("Clickable").on_click.connect(func(_event): next_page_button.on_button_down.connect(func():
print("next page")
next_page() next_page()
) )
previous_page_button.get_node("Clickable").on_click.connect(func(_event): previous_page_button.on_button_down.connect(func():
previous_page() previous_page()
) )