Skip to content

Commit 858a02a

Browse files
committed
Fix opening config from themes not working
1 parent 48d3830 commit 858a02a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/UI.gd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ extends Control
22

33
var _n_filesystem_popup : FileDialog: set = _set_filesystem_popup
44
var _n_virtual_keyboard : PopupPanel: set = _set_virtual_keyboard
5-
var _n_config_popup : Popup: set = _set_config_popup
5+
var _n_config_popup : Window: set = _set_config_popup
66
var _n_warning_popup : AcceptDialog: set = _set_warning_popup
77

88
var color_theme_accent := Color("ffbb89")
@@ -63,7 +63,7 @@ func _set_filesystem_popup(popup: FileDialog):
6363
func _set_virtual_keyboard(keyboard: PopupPanel):
6464
_n_virtual_keyboard = keyboard
6565

66-
func _set_config_popup(config_popup: Popup):
66+
func _set_config_popup(config_popup: Window):
6767
_n_config_popup = config_popup
6868

6969
func _set_warning_popup(warning_popup: AcceptDialog):

0 commit comments

Comments
 (0)