Browse Source

Merge pull request #23379 from Chaosus/filedock_fix

Fix small visual bug in filesystem dock
Rémi Verschelde 6 năm trước cách đây
mục cha
commit
35e4783f7b
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      editor/filesystem_dock.cpp

+ 1 - 1
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;