Skip to content

Commit

Permalink
Wider progress dialogs.
Browse files Browse the repository at this point in the history
  • Loading branch information
textbrowser committed Dec 1, 2024
1 parent bb6ccc4 commit a28af4d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Source/biblioteq_import.cc
Original file line number Diff line number Diff line change
Expand Up @@ -756,6 +756,7 @@ void biblioteq_import::loadPreview(void)
progress->setLabelText(tr("Reading the CSV file..."));
progress->setMaximum(0);
progress->setMinimum(0);
progress->setMinimumWidth(2 * progress->sizeHint().width());
progress->setModal(true);
progress->setValue(0);
progress->setWindowTitle(tr("BiblioteQ: Progress Dialog"));
Expand Down Expand Up @@ -1234,6 +1235,7 @@ void biblioteq_import::slotImport(void)
progress->setLabelText(tr("Importing the CSV file..."));
progress->setMaximum(0);
progress->setMinimum(0);
progress->setMinimumWidth(2 * progress->sizeHint().width());
progress->setModal(true);
progress->setValue(0);
progress->setWindowTitle(tr("BiblioteQ: Progress Dialog"));
Expand Down

0 comments on commit a28af4d

Please sign in to comment.