summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAL <26797547+Al12rs@users.noreply.github.com>2020-04-18 21:24:53 +0200
committerAL <26797547+Al12rs@users.noreply.github.com>2020-04-18 21:25:00 +0200
commit530bade5f71806a7ffd317a6ba2b5cdccb1cc69c (patch)
tree45a88f5ce07f8dc4cf230d021458f13001f9050c
parenta2f550ee339bb8feabd64791df3c80b9ab18c2be (diff)
Allow resizing and maximizing the Loot sort report dialog.
-rw-r--r--src/lootdialog.cpp3
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)