diff options
author | Chaosus <chaosus89@gmail.com> | 2018-10-29 16:20:31 +0300 |
---|---|---|
committer | Chaosus <chaosus89@gmail.com> | 2018-10-29 16:21:55 +0300 |
commit | 4f4bbfbb85feb6b7b0379dfe33719265cc25fe1a (patch) | |
tree | 533561f018c49eade6b123e25e917d9bafb1d327 | |
parent | 0a80ceaf02b258c548e500297079a350d8567023 (diff) |
Fix small visual bug in filesystem dock
-rw-r--r-- | editor/filesystem_dock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/filesystem_dock.cpp b/editor/filesystem_dock.cpp index ef960f74ea..2136211faa 100644 --- a/editor/filesystem_dock.cpp +++ b/editor/filesystem_dock.cpp @@ -353,7 +353,7 @@ void FileSystemDock::_notification(int p_what) { } break; case NOTIFICATION_THEME_CHANGED: { - if (tree->is_visible_in_tree()) { + if (is_visible_in_tree()) { _update_display_mode(true); } } break; |