diff options
| author | Paul Joannon | 2018-01-10 21:02:49 +0100 |
|---|---|---|
| committer | Hein-Pieter van Braam | 2018-02-19 20:50:39 +0100 |
| commit | a1455f6a0384aa69bcd211358b60bb1a754dc18e (patch) | |
| tree | 0486c47f36f37ae2cc481e83a6da91ec51094a6b /modules/mono | |
| parent | f64b68d870c761472e981e0d71491963b744b82d (diff) | |
| download | godot-a1455f6a0384aa69bcd211358b60bb1a754dc18e.tar.gz godot-a1455f6a0384aa69bcd211358b60bb1a754dc18e.tar.zst godot-a1455f6a0384aa69bcd211358b60bb1a754dc18e.zip | |
Change 'Build Project' button style in Mono panel
Address #15208
(cherry picked from commit 484f664331a0aa45f0b6bbee46a9d1d631edf23e)
Diffstat (limited to 'modules/mono')
| -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 43689548b..ab62c6261 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"); |
