mirror of
https://github.com/Relintai/material-maker.git
synced 2024-11-13 06:27:18 +01:00
Display a disabled item if no recent materials were found in Open Recent
This commit is contained in:
parent
3017f0d0fa
commit
5c28b4f617
@ -123,10 +123,15 @@ func create_menu(menu, menu_name):
|
|||||||
|
|
||||||
func create_menu_load_recent(menu):
|
func create_menu_load_recent(menu):
|
||||||
menu.clear()
|
menu.clear()
|
||||||
for i in recent_files.size():
|
|
||||||
menu.add_item(recent_files[i], i)
|
if recent_files.empty():
|
||||||
if !menu.is_connected("id_pressed", self, "_on_LoadRecent_id_pressed"):
|
menu.add_item("No items found", 0)
|
||||||
menu.connect("id_pressed", self, "_on_LoadRecent_id_pressed")
|
menu.set_item_disabled(0, true)
|
||||||
|
else:
|
||||||
|
for i in recent_files.size():
|
||||||
|
menu.add_item(recent_files[i], i)
|
||||||
|
if !menu.is_connected("id_pressed", self, "_on_LoadRecent_id_pressed"):
|
||||||
|
menu.connect("id_pressed", self, "_on_LoadRecent_id_pressed")
|
||||||
|
|
||||||
func _on_LoadRecent_id_pressed(id):
|
func _on_LoadRecent_id_pressed(id):
|
||||||
do_load_material(recent_files[id])
|
do_load_material(recent_files[id])
|
||||||
|
Loading…
Reference in New Issue
Block a user