Sfoglia il codice sorgente

Merge pull request #32846 from Chaosus/fix_doc_color

Fix incorrect coloring of in-editor documentation when theme changed
Rémi Verschelde 6 anni fa
parent
commit
a2871cc06b
1 ha cambiato i file con 4 aggiunte e 0 eliminazioni
  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;
 	}
 }