From 48fcf9521f796bc3b6e536545877a9ea2e37360d Mon Sep 17 00:00:00 2001 From: isanae <14251494+isanae@users.noreply.github.com> Date: Sun, 24 Nov 2019 23:47:59 -0500 Subject: removed max-width, larger dialog removed messages in output now that there's a full report --- src/lootdialog.cpp | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'src/lootdialog.cpp') diff --git a/src/lootdialog.cpp b/src/lootdialog.cpp index c7cdfecd..80664415 100644 --- a/src/lootdialog.cpp +++ b/src/lootdialog.cpp @@ -171,7 +171,7 @@ void LootDialog::createUI() connect(ui->buttons, &QDialogButtonBox::clicked, [&](auto* b){ onButton(b); }); - resize(480, 275); + resize(650, 450); } void LootDialog::closeEvent(QCloseEvent* e) @@ -228,14 +228,6 @@ void LootDialog::handleReport() { const auto& lootReport = m_loot.report(); - if (!lootReport.messages.empty()) { - addLineOutput(""); - } - - for (auto&& m : lootReport.messages) { - log(m.type, m.text); - } - for (auto&& p : lootReport.plugins) { m_core.pluginList()->addLootReport(p.name, p); } -- cgit v1.3.1