You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description" : "Regex filter for region names to skip loading, by default this filters out the link edit region which is not necessary to be applied to the view."
logger->LogInfo("Processing %zu entries took %.3f seconds", sharedCache.GetEntries().size(), elapsed.count());
791
+
792
+
if (!result)
788
793
{
789
-
// Oh no, we failed to process the cache, this likely means the primary on-disk file was not able to be
790
-
// found.
791
794
// TODO: Prompt the user to select the primary cache file? We can still recover from here.
795
+
// Oh no, we failed to process the cache, this likely means the primary on-disk file was not able to be found.
792
796
logger->LogError("Failed to process cache, likely missing cache files.");
793
797
// NOTE: An interaction handler headlessly could select yes to this, however for the purposes of this we will just let them continue by defualt.
794
798
if (IsUIEnabled() && ShowMessageBox("Continue opening", "This shared cache file was unable to be processed, would you like to open without shared cache information?", YesNoButtonSet, QuestionIcon) != YesButton)
795
799
returnfalse;
800
+
// Skip all the other shared cache stuff.
801
+
returntrue;
796
802
}
797
-
auto endTime = std::chrono::high_resolution_clock::now();
0 commit comments