summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Joannon <hello@pauljoannon.com>2018-01-10 21:02:49 +0100
committerPaul Joannon <hello@pauljoannon.com>2018-01-10 21:03:07 +0100
commit484f664331a0aa45f0b6bbee46a9d1d631edf23e (patch)
tree73c53d25d5952ddafdf19ae6f2acbbfd3925c7ae
parentc037f6339f1fc9636b4fc9056ae0b2e2b673024d (diff)
Change 'Build Project' button style in Mono panel
Address #15208
-rw-r--r--modules/mono/editor/mono_bottom_panel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/mono_bottom_panel.cpp b/modules/mono/editor/mono_bottom_panel.cpp
index 43689548b5..ab62c62616 100644
--- a/modules/mono/editor/mono_bottom_panel.cpp
+++ b/modules/mono/editor/mono_bottom_panel.cpp
@@ -197,7 +197,7 @@ MonoBottomPanel::MonoBottomPanel(EditorNode *p_editor) {
toolbar_hbc->set_h_size_flags(SIZE_EXPAND_FILL);
panel_builds_tab->add_child(toolbar_hbc);
- ToolButton *build_project_btn = memnew(ToolButton);
+ Button *build_project_btn = memnew(Button);
build_project_btn->set_text(TTR("Build Project"));
build_project_btn->set_focus_mode(FOCUS_NONE);
build_project_btn->connect("pressed", this, "_build_project_pressed");