summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Alexsander Silva Dias <michaelalexsander@protonmail.com>2018-07-20 14:32:53 -0300
committerMichael Alexsander Silva Dias <michaelalexsander@protonmail.com>2018-07-20 14:32:53 -0300
commit12b55610edd8c81b1fadc4e77350dd8cea6448d2 (patch)
tree74cd695262d8e094e4b65513b1a695eaa92aed23
parent6c09cdd1361881ab44c971bae57f3a273f8b5110 (diff)
Make Update Spinner popup use radio items
-rw-r--r--editor/editor_node.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp
index 88266f468a..a6c68eb9b2 100644
--- a/editor/editor_node.cpp
+++ b/editor/editor_node.cpp
@@ -5289,8 +5289,8 @@ EditorNode::EditorNode() {
update_menu->set_icon(gui_base->get_icon("Progress1", "EditorIcons"));
update_menu->get_popup()->connect("id_pressed", this, "_menu_option");
p = update_menu->get_popup();
- p->add_check_item(TTR("Update Always"), SETTINGS_UPDATE_ALWAYS);
- p->add_check_item(TTR("Update Changes"), SETTINGS_UPDATE_CHANGES);
+ p->add_radio_check_item(TTR("Update Always"), SETTINGS_UPDATE_ALWAYS);
+ p->add_radio_check_item(TTR("Update Changes"), SETTINGS_UPDATE_CHANGES);
p->add_separator();
p->add_check_item(TTR("Disable Update Spinner"), SETTINGS_UPDATE_SPINNER_HIDE);
int update_always = EditorSettings::get_singleton()->get_project_metadata("editor_options", "update_always", false);