mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 11:32:13 +00:00
Don't swap Advanced Import Settings button position based on Swap OK Cancel
The "Advanced..." and "Reimport" buttons are not OK/Cancel buttons, so they shouldn't be swapped according to the editor setting (which itself is determined depending on the OS by default).
This commit is contained in:
parent
80f0b33313
commit
567db2ecb2
@ -790,23 +790,14 @@ ImportDock::ImportDock() {
|
|||||||
import->set_text(TTR("Reimport"));
|
import->set_text(TTR("Reimport"));
|
||||||
import->set_disabled(true);
|
import->set_disabled(true);
|
||||||
import->connect(SceneStringName(pressed), callable_mp(this, &ImportDock::_reimport_pressed));
|
import->connect(SceneStringName(pressed), callable_mp(this, &ImportDock::_reimport_pressed));
|
||||||
if (!DisplayServer::get_singleton()->get_swap_cancel_ok()) {
|
advanced_spacer = hb->add_spacer();
|
||||||
advanced_spacer = hb->add_spacer();
|
advanced = memnew(Button);
|
||||||
advanced = memnew(Button);
|
advanced->set_text(TTR("Advanced..."));
|
||||||
advanced->set_text(TTR("Advanced..."));
|
hb->add_child(advanced);
|
||||||
hb->add_child(advanced);
|
|
||||||
}
|
|
||||||
hb->add_spacer();
|
hb->add_spacer();
|
||||||
hb->add_child(import);
|
hb->add_child(import);
|
||||||
hb->add_spacer();
|
hb->add_spacer();
|
||||||
|
|
||||||
if (DisplayServer::get_singleton()->get_swap_cancel_ok()) {
|
|
||||||
advanced = memnew(Button);
|
|
||||||
advanced->set_text(TTR("Advanced..."));
|
|
||||||
hb->add_child(advanced);
|
|
||||||
advanced_spacer = hb->add_spacer();
|
|
||||||
}
|
|
||||||
|
|
||||||
advanced->hide();
|
advanced->hide();
|
||||||
advanced_spacer->hide();
|
advanced_spacer->hide();
|
||||||
advanced->connect(SceneStringName(pressed), callable_mp(this, &ImportDock::_advanced_options));
|
advanced->connect(SceneStringName(pressed), callable_mp(this, &ImportDock::_advanced_options));
|
||||||
|
Loading…
Reference in New Issue
Block a user