mirror of
https://github.com/Lime3DS/Lime3DS
synced 2024-11-02 05:07:51 +00:00
address wwylele's feedback
This commit is contained in:
parent
68959823e9
commit
b71d9e108d
1 changed files with 4 additions and 5 deletions
|
@ -39,17 +39,16 @@ void CompatDB::Submit() {
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
LOG_DEBUG(
|
LOG_DEBUG(Frontend, "Compatibility Rating: %1", compatibility->checkedId());
|
||||||
Frontend,
|
|
||||||
tr("Compatibility Rating: %1").arg(compatibility->checkedId()).toStdString().c_str());
|
|
||||||
Core::Telemetry().AddField(Telemetry::FieldType::UserFeedback, "Compatibility",
|
Core::Telemetry().AddField(Telemetry::FieldType::UserFeedback, "Compatibility",
|
||||||
compatibility->checkedId());
|
compatibility->checkedId());
|
||||||
// the frozen dependency Linux build does not support the "NoCancelButtonOnLastPage" option,
|
// older versions of QT don't support the "NoCancelButtonOnLastPage" option, this is a
|
||||||
// this is a workaround
|
// workaround
|
||||||
button(QWizard::CancelButton)->setVisible(false);
|
button(QWizard::CancelButton)->setVisible(false);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void CompatDB::EnableNext() {
|
void CompatDB::EnableNext() {
|
||||||
button(NextButton)->setEnabled(true);
|
button(NextButton)->setEnabled(true);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue