summaryrefslogtreecommitdiff
path: root/editor/code_editor.cpp
diff options
context:
space:
mode:
authorYuri Roubinsky <chaosus89@gmail.com>2019-12-17 11:43:06 +0300
committerGitHub <noreply@github.com>2019-12-17 11:43:06 +0300
commitaccf68b2cc0a459dd37a44a80d387cc7e59b4062 (patch)
treed972ad0b158bfa37a400d12b01c3a88047a8c26a /editor/code_editor.cpp
parent01a62232264eae3beea6fd6afceae8a45328985f (diff)
parentbb7b614da15ac0634f2e1895f8ee52433c9bd584 (diff)
Merge pull request #34393 from Chaosus/fix_toggle_scripts_panel
Prevent showing toggle scripts panel switch in shader editor
Diffstat (limited to 'editor/code_editor.cpp')
-rw-r--r--editor/code_editor.cpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/editor/code_editor.cpp b/editor/code_editor.cpp
index 11d5e1e786..06a425bab9 100644
--- a/editor/code_editor.cpp
+++ b/editor/code_editor.cpp
@@ -1527,7 +1527,9 @@ void CodeTextEditor::_notification(int p_what) {
emit_signal("load_theme_settings");
} break;
case NOTIFICATION_THEME_CHANGED: {
- toggle_scripts_button->set_icon(ScriptEditor::get_singleton()->is_scripts_panel_toggled() ? get_icon("Back", "EditorIcons") : get_icon("Forward", "EditorIcons"));
+ if (toggle_scripts_button->is_visible()) {
+ toggle_scripts_button->set_icon(ScriptEditor::get_singleton()->is_scripts_panel_toggled() ? get_icon("Back", "EditorIcons") : get_icon("Forward", "EditorIcons"));
+ }
_update_font();
} break;
case NOTIFICATION_ENTER_TREE: {
@@ -1643,6 +1645,10 @@ void CodeTextEditor::set_code_complete_func(CodeTextEditorCodeCompleteFunc p_cod
code_complete_ud = p_ud;
}
+void CodeTextEditor::show_toggle_scripts_button() {
+ toggle_scripts_button->show();
+}
+
CodeTextEditor::CodeTextEditor() {
code_complete_func = NULL;
@@ -1688,6 +1694,7 @@ CodeTextEditor::CodeTextEditor() {
toggle_scripts_button->connect("pressed", this, "_toggle_scripts_pressed");
status_bar->add_child(toggle_scripts_button);
toggle_scripts_button->set_shortcut(ED_SHORTCUT("script_editor/toggle_scripts_panel", TTR("Toggle Scripts Panel"), KEY_MASK_CMD | KEY_BACKSLASH));
+ toggle_scripts_button->hide();
// Error
ScrollContainer *scroll = memnew(ScrollContainer);