Launcher: ensure cache rebuild dialog stays open.
Disable the auto-close behaviour, which was causing us to end the rebuild too early, and then corrupt the DB
This commit is contained in:
parent
d8b778a59e
commit
645548cbcc
1 changed files with 2 additions and 0 deletions
|
@ -107,6 +107,8 @@ void initNavCache()
|
|||
| Qt::MSWindowsFixedSizeDialogHint);
|
||||
rebuildProgress.setWindowModality(Qt::WindowModal);
|
||||
rebuildProgress.setMinimumWidth(600);
|
||||
rebuildProgress.setAutoReset(true);
|
||||
rebuildProgress.setAutoClose(false);
|
||||
rebuildProgress.show();
|
||||
|
||||
QTimer updateTimer;
|
||||
|
|
Loading…
Reference in a new issue