Updated efsw.
Refactored MD5 class.
ecode:
Updated build.app.sh scripts with the new font assets.
Tried to reduce the false positives of the document modified alert (I don't think it worked, needs more investigation).
This commit is contained in:
Martín Lucas Golini
2023-09-14 01:15:46 -03:00
parent 4520a74b1b
commit e795b70c7e
15 changed files with 178 additions and 113 deletions

View File

@@ -2067,6 +2067,14 @@ void App::createDocAlert( UICodeEditor* editor ) {
editor->setFocus();
}
} );
docAlert->runOnMainThread(
[docAlert, editor] {
editor->disableReportSizeChangeToChilds();
docAlert->close();
editor->setFocus();
},
Seconds( 10.f ) );
}
void App::loadImageFromMedium( const std::string& path, bool isMemory ) {