From b71d9e108d70aacd6d69c29f3aeb3516f2604d8d Mon Sep 17 00:00:00 2001 From: BreadFish64 Date: Wed, 10 Jan 2018 19:05:14 -0600 Subject: [PATCH] address wwylele's feedback --- src/citra_qt/compatdb.cpp | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/citra_qt/compatdb.cpp b/src/citra_qt/compatdb.cpp index 595d57f8c..2ef52ad74 100644 --- a/src/citra_qt/compatdb.cpp +++ b/src/citra_qt/compatdb.cpp @@ -39,17 +39,16 @@ void CompatDB::Submit() { } break; case 2: - LOG_DEBUG( - Frontend, - tr("Compatibility Rating: %1").arg(compatibility->checkedId()).toStdString().c_str()); + LOG_DEBUG(Frontend, "Compatibility Rating: %1", compatibility->checkedId()); Core::Telemetry().AddField(Telemetry::FieldType::UserFeedback, "Compatibility", compatibility->checkedId()); - // the frozen dependency Linux build does not support the "NoCancelButtonOnLastPage" option, - // this is a workaround + // older versions of QT don't support the "NoCancelButtonOnLastPage" option, this is a + // workaround button(QWizard::CancelButton)->setVisible(false); break; } } + void CompatDB::EnableNext() { button(NextButton)->setEnabled(true); }