update some ui things
This commit is contained in:
parent
ca6aa59cb5
commit
f376c4a36e
2 changed files with 15 additions and 19 deletions
|
@ -198,14 +198,20 @@ offset_left = 4.0
|
||||||
offset_top = 4.0
|
offset_top = 4.0
|
||||||
offset_right = 260.0
|
offset_right = 260.0
|
||||||
offset_bottom = 36.0
|
offset_bottom = 36.0
|
||||||
selected = 0
|
selected = 1
|
||||||
item_count = 3
|
item_count = 5
|
||||||
popup/item_0/text = "Balcony Stage"
|
popup/item_0/text = "Official Stages"
|
||||||
popup/item_0/id = 0
|
popup/item_0/id = 4
|
||||||
popup/item_1/text = "Helen House"
|
popup/item_0/separator = true
|
||||||
popup/item_1/id = 1
|
popup/item_1/text = "Balcony Stage"
|
||||||
popup/item_2/text = "Chuck E's Corner"
|
popup/item_1/id = 0
|
||||||
popup/item_2/id = 2
|
popup/item_2/text = "Custom Stages"
|
||||||
|
popup/item_2/id = 3
|
||||||
|
popup/item_2/separator = true
|
||||||
|
popup/item_3/text = "Helen House"
|
||||||
|
popup/item_3/id = 1
|
||||||
|
popup/item_4/text = "Chuck E's Corner"
|
||||||
|
popup/item_4/id = 2
|
||||||
|
|
||||||
[node name="MenuButton" type="MenuButton" parent="MenuBar"]
|
[node name="MenuButton" type="MenuButton" parent="MenuBar"]
|
||||||
layout_mode = 0
|
layout_mode = 0
|
||||||
|
@ -959,16 +965,6 @@ offset_bottom = 145.0
|
||||||
tooltip_text = "Browse for a file."
|
tooltip_text = "Browse for a file."
|
||||||
text = "Browse"
|
text = "Browse"
|
||||||
|
|
||||||
[node name="ShowWaitMessage" type="Label" parent="ShowtapeLoadScreen/DialogPanel"]
|
|
||||||
layout_mode = 0
|
|
||||||
offset_left = 8.0
|
|
||||||
offset_top = 148.0
|
|
||||||
offset_right = 374.0
|
|
||||||
offset_bottom = 197.0
|
|
||||||
text = "If shows are taking a long time to load,
|
|
||||||
consider compressing the audio to MP3 or OGG"
|
|
||||||
vertical_alignment = 1
|
|
||||||
|
|
||||||
[node name="CancelButton" type="Button" parent="ShowtapeLoadScreen/DialogPanel"]
|
[node name="CancelButton" type="Button" parent="ShowtapeLoadScreen/DialogPanel"]
|
||||||
layout_mode = 0
|
layout_mode = 0
|
||||||
offset_left = 309.0
|
offset_left = 309.0
|
||||||
|
|
|
@ -677,7 +677,7 @@ func _on_showtape_load_open_button_pressed() -> void:
|
||||||
$IncorrectShowtapeDialog.show()
|
$IncorrectShowtapeDialog.show()
|
||||||
return
|
return
|
||||||
if (header[3] != stages_info[current_stage]["ust_type"]):
|
if (header[3] != stages_info[current_stage]["ust_type"]):
|
||||||
$IncorrectShowtapeDialog.dialog_text = "This showtape is not compatible with the currently selected stage.\nShowtape stage type: " + header[3]
|
$IncorrectShowtapeDialog.dialog_text = "This showtape is not compatible with the currently selected stage.\nShowtape stage type: %s\n Current stage type: %s" % [ header[3], stages_info[current_stage]["ust_type"] ]
|
||||||
$IncorrectShowtapeDialog.show()
|
$IncorrectShowtapeDialog.show()
|
||||||
return
|
return
|
||||||
show_name = header[2]
|
show_name = header[2]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue