logic: Show overview instead of empty error screen after all indexing errors were fixed
This commit is contained in:
@@ -14,6 +14,7 @@ public:
|
||||
|
||||
MessageRefreshUI()
|
||||
: loadStyle(true)
|
||||
, isAfterIndexing(false)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -23,6 +24,12 @@ public:
|
||||
return *this;
|
||||
}
|
||||
|
||||
MessageRefreshUI& afterIndexing()
|
||||
{
|
||||
isAfterIndexing = true;
|
||||
return *this;
|
||||
}
|
||||
|
||||
void print(std::wostream& os) const override
|
||||
{
|
||||
if (loadStyle)
|
||||
@@ -32,6 +39,7 @@ public:
|
||||
}
|
||||
|
||||
bool loadStyle;
|
||||
bool isAfterIndexing;
|
||||
};
|
||||
|
||||
#endif // MESSAGE_REFRESH_UI_H
|
||||
|
||||
Reference in New Issue
Block a user