Crash fix.

This commit is contained in:
Martín Lucas Golini
2025-03-17 18:07:58 -03:00
parent 9a04ffaae8
commit 201fb354e8

View File

@@ -1739,6 +1739,9 @@ void App::onRealDocumentLoaded( UICodeEditor* editor, const std::string& path )
}
void App::onDocumentLoaded( UICodeEditor* editor, const std::string& path ) {
if ( editor->getData() == 0 )
return;
onRealDocumentLoaded( editor, path );
// Check if other editor is using the same document and needs to receive the same notification