diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2018-02-14 16:41:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-14 16:41:25 +0100 |
commit | 2eb7a321ba321065c135f799701efaf735142593 (patch) | |
tree | c8671ce371de7aa460af39e6d6daabe9fe2e08e5 | |
parent | 4e111483aef47a876fafe4d9add36341e554bfa8 (diff) | |
parent | 484f664331a0aa45f0b6bbee46a9d1d631edf23e (diff) |
Merge pull request #15574 from paulloz/mono-build-project-button
Change 'Build Project' button style in Mono panel
-rw-r--r-- | modules/mono/editor/mono_bottom_panel.cpp | 2 |
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"); |