소스 검색

Fix incorrect coloring of in-editor documentation when theme changed

Yuri Roubinsky 5 년 전
부모
커밋
c1bd94c2a4
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      editor/editor_help.cpp

+ 4 - 0
editor/editor_help.cpp

@@ -1467,6 +1467,10 @@ void EditorHelp::_notification(int p_what) {
 
 			_update_doc();
 		} break;
+		case NOTIFICATION_THEME_CHANGED: {
+
+			_class_desc_resized();
+		} break;
 		default: break;
 	}
 }