Build viewer/editor #13

Manually merged
williamjcm merged 128 commits from mass-viewer into master 2022-03-02 14:50:10 +01:00
Showing only changes of commit 1612e4372b - Show all commits

View file

@ -206,6 +206,8 @@ void SaveTool::handleFileAction(efsw::WatchID watch_id,
return; return;
} }
static bool is_moved_after_save = false;
switch(action) { switch(action) {
case efsw::Actions::Add: case efsw::Actions::Add:
if(Utility::String::endsWith(filename, _currentProfile->steamId() + ".sav")) { if(Utility::String::endsWith(filename, _currentProfile->steamId() + ".sav")) {
@ -229,9 +231,6 @@ void SaveTool::handleFileAction(efsw::WatchID watch_id,
if(!_currentMass || _currentMass != &(_massManager->hangar(index))) { if(!_currentMass || _currentMass != &(_massManager->hangar(index))) {
_massManager->refreshHangar(index); _massManager->refreshHangar(index);
} }
else {
_currentMass->setDirty();
}
} }
} }
break; break;
@ -248,14 +247,18 @@ void SaveTool::handleFileAction(efsw::WatchID watch_id,
_massManager->refreshHangar(index); _massManager->refreshHangar(index);
} }
else { else {
if(!is_moved_after_save) {
is_moved_after_save = false;
_currentMass->setDirty(); _currentMass->setDirty();
} }
} }
} }
}
break; break;
case efsw::Actions::Moved: case efsw::Actions::Moved:
if(Utility::String::endsWith(filename, _currentProfile->steamId() + ".sav")) { if(Utility::String::endsWith(filename, _currentProfile->steamId() + ".sav")) {
if(Utility::String::endsWith(old_filename, ".tmp")) { if(Utility::String::endsWith(old_filename, ".tmp")) {
is_moved_after_save = true;
return; return;
} }