File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 11
11
12
12
[sub_resource type ="FontFile" id ="1" ]
13
13
fallbacks = Array[Font]([ExtResource ("2" )])
14
- face_index = null
15
- embolden = null
16
- transform = null
17
14
cache/0/16/0/ascent = 0.0
18
15
cache/0/16/0/descent = 0.0
19
16
cache/0/16/0/underline_position = 0.0
Original file line number Diff line number Diff line change @@ -101,7 +101,9 @@ func get_selected_items(_root: TreeItem):
101
101
if _root .get_children ():
102
102
selected_items .append_array (get_selected_items (next .get_child (0 )))
103
103
elif next .is_checked (1 ):
104
- selected_items .append (next .get_metadata (0 ))
104
+ var game : RetroHubGameData = next .get_metadata (0 )
105
+ if game :
106
+ selected_items .append (game )
105
107
next = next .get_next ()
106
108
return selected_items
107
109
You can’t perform that action at this time.
0 commit comments