diff options
| author | AL <26797547+Al12rs@users.noreply.github.com> | 2020-04-18 21:24:53 +0200 |
|---|---|---|
| committer | AL <26797547+Al12rs@users.noreply.github.com> | 2020-04-18 21:25:00 +0200 |
| commit | 530bade5f71806a7ffd317a6ba2b5cdccb1cc69c (patch) | |
| tree | 45a88f5ce07f8dc4cf230d021458f13001f9050c /src/lootdialog.cpp | |
| parent | a2f550ee339bb8feabd64791df3c80b9ab18c2be (diff) | |
Allow resizing and maximizing the Loot sort report dialog.
Diffstat (limited to 'src/lootdialog.cpp')
| -rw-r--r-- | src/lootdialog.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lootdialog.cpp b/src/lootdialog.cpp index 5ac65907..58699d6e 100644 --- a/src/lootdialog.cpp +++ b/src/lootdialog.cpp @@ -65,7 +65,7 @@ bool MarkdownPage::acceptNavigationRequest(const QUrl &url, NavigationType, bool LootDialog::LootDialog(QWidget* parent, OrganizerCore& core, Loot& loot) : - QDialog(parent), ui(new Ui::LootDialog), m_core(core), m_loot(loot), + QDialog(parent, Qt::WindowMaximizeButtonHint), ui(new Ui::LootDialog), m_core(core), m_loot(loot), m_finished(false), m_cancelling(false) { createUI(); @@ -215,6 +215,7 @@ void LootDialog::createUI() m_report.setText(tr("Running LOOT...")); resize(650, 450); + setSizeGripEnabled(true); } void LootDialog::closeEvent(QCloseEvent* e) |
