@@ -12,7 +12,7 @@ onready var oDisplaySlxNumbers = Nodelist.list["oDisplaySlxNumbers"]
12
12
onready var oCustomSlabSystem = Nodelist .list ["oCustomSlabSystem" ]
13
13
onready var oColumnEditor = Nodelist .list ["oColumnEditor" ]
14
14
onready var oPlaceLockedCheckBox = Nodelist .list ["oPlaceLockedCheckBox" ]
15
- onready var oConfirmDeleteCustomSlab = Nodelist .list ["oConfirmDeleteCustomSlab " ]
15
+ onready var oConfirmDeleteFakeSlab = Nodelist .list ["oConfirmDeleteFakeSlab " ]
16
16
onready var oAddCustomSlabWindow = Nodelist .list ["oAddCustomSlabWindow" ]
17
17
onready var oOverheadGraphics = Nodelist .list ["oOverheadGraphics" ]
18
18
onready var oSlabNameDisplay = Nodelist .list ["oSlabNameDisplay" ]
@@ -251,14 +251,14 @@ func _on_slab_portrait_gui_input(event, id):
251
251
var oGridContainer = current_grid_container ()
252
252
if oGridContainer != tabs [Slabs .TAB_CUSTOM ][GRIDCON_PATH ]:
253
253
return
254
- Utils .popup_centered (oConfirmDeleteCustomSlab )
254
+ Utils .popup_centered (oConfirmDeleteFakeSlab )
255
255
var slabID = id .get_meta ("ID_of_slab" )
256
- oConfirmDeleteCustomSlab .set_meta ("ID_TO_DELETE" , slabID )
256
+ oConfirmDeleteFakeSlab .set_meta ("ID_TO_DELETE" , slabID )
257
257
_on_hovered_none ()
258
258
259
259
260
- func _on_ConfirmDeleteCustomSlab_confirmed ():
261
- var slabID = oConfirmDeleteCustomSlab .get_meta ("ID_TO_DELETE" )
260
+ func _on_ConfirmDeleteFakeSlab_confirmed ():
261
+ var slabID = oConfirmDeleteFakeSlab .get_meta ("ID_TO_DELETE" )
262
262
var gridContainer = tabs [Slabs .TAB_CUSTOM ][GRIDCON_PATH ]
263
263
for child in gridContainer .get_children ():
264
264
if child .has_meta ("ID_of_slab" ) and child .get_meta ("ID_of_slab" ) == slabID :
0 commit comments