소스 검색

Merge pull request #23379 from Chaosus/filedock_fix

Fix small visual bug in filesystem dock
Rémi Verschelde 6 년 전
부모
커밋
35e4783f7b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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;