File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,13 @@ func _ready():
19
19
var path : String
20
20
var controller_icon_rect := preload ("res://addons/controller_icons/objects/TextureRect.gd" )
21
21
22
+ for button :Button in [
23
+ get_vbox ().get_child (0 , true ).get_child (0 , true ), # Previous button
24
+ get_vbox ().get_child (0 , true ).get_child (1 , true ), # Next button
25
+ upwards_button , refresh_button , hide_button
26
+ ]:
27
+ button .flat = true
28
+
22
29
# Attach ControllerIcons to buttons
23
30
var box : HBoxContainer = ok_button .get_parent ()
24
31
var back_icon := create_icon (controller_icon_rect , "rh_back" )
@@ -76,7 +83,7 @@ func _ready():
76
83
create_folder_cancel_button .focus_neighbor_top = path
77
84
78
85
# Force the recent paths option button to wrap text
79
- # This field doesn't exists on Windows for some reason
86
+ # This field doesn't exist on Windows for some reason
80
87
if FileUtils .get_os_id () != FileUtils .OS_ID .WINDOWS :
81
88
var recent_paths : OptionButton = get_vbox ().get_child (0 , true ).get_child (11 , true ).get_child (0 , true )
82
89
recent_paths .fit_to_longest_item = false
You can’t perform that action at this time.
0 commit comments