shared_widget: Determine default request earlier
Fixes a bug where a restore button could be created for an unmanaged widget.
This commit is contained in:
parent
f84e7b4656
commit
ab2921121e
1 changed files with 22 additions and 19 deletions
|
@ -390,25 +390,6 @@ void Widget::SetupComponent(const QString& label, std::function<void()>& load_fu
|
||||||
|
|
||||||
QWidget* data_component{nullptr};
|
QWidget* data_component{nullptr};
|
||||||
|
|
||||||
if (!Settings::IsConfiguringGlobal() && managed) {
|
|
||||||
restore_button = CreateRestoreGlobalButton(setting.UsingGlobal(), this);
|
|
||||||
|
|
||||||
touch = [this]() {
|
|
||||||
LOG_DEBUG(Frontend, "Enabling custom setting for \"{}\"", setting.GetLabel());
|
|
||||||
restore_button->setEnabled(true);
|
|
||||||
restore_button->setVisible(true);
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
if (require_checkbox) {
|
|
||||||
QWidget* lhs =
|
|
||||||
CreateCheckBox(other_setting, label, checkbox_serializer, checkbox_restore_func, touch);
|
|
||||||
layout->addWidget(lhs);
|
|
||||||
} else if (setting.TypeId() != typeid(bool)) {
|
|
||||||
QLabel* qt_label = CreateLabel(label);
|
|
||||||
layout->addWidget(qt_label);
|
|
||||||
}
|
|
||||||
|
|
||||||
request = [&]() {
|
request = [&]() {
|
||||||
if (request != RequestType::Default) {
|
if (request != RequestType::Default) {
|
||||||
return request;
|
return request;
|
||||||
|
@ -435,6 +416,25 @@ void Widget::SetupComponent(const QString& label, std::function<void()>& load_fu
|
||||||
return request;
|
return request;
|
||||||
}();
|
}();
|
||||||
|
|
||||||
|
if (!Settings::IsConfiguringGlobal() && managed) {
|
||||||
|
restore_button = CreateRestoreGlobalButton(setting.UsingGlobal(), this);
|
||||||
|
|
||||||
|
touch = [this]() {
|
||||||
|
LOG_DEBUG(Frontend, "Enabling custom setting for \"{}\"", setting.GetLabel());
|
||||||
|
restore_button->setEnabled(true);
|
||||||
|
restore_button->setVisible(true);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
if (require_checkbox) {
|
||||||
|
QWidget* lhs =
|
||||||
|
CreateCheckBox(other_setting, label, checkbox_serializer, checkbox_restore_func, touch);
|
||||||
|
layout->addWidget(lhs);
|
||||||
|
} else if (setting.TypeId() != typeid(bool)) {
|
||||||
|
QLabel* qt_label = CreateLabel(label);
|
||||||
|
layout->addWidget(qt_label);
|
||||||
|
}
|
||||||
|
|
||||||
if (setting.TypeId() == typeid(bool)) {
|
if (setting.TypeId() == typeid(bool)) {
|
||||||
data_component = CreateCheckBox(&setting, label, serializer, restore_func, touch);
|
data_component = CreateCheckBox(&setting, label, serializer, restore_func, touch);
|
||||||
} else if (setting.IsEnum()) {
|
} else if (setting.IsEnum()) {
|
||||||
|
@ -505,6 +505,9 @@ void Widget::SetupComponent(const QString& label, std::function<void()>& load_fu
|
||||||
|
|
||||||
QObject::connect(restore_button, &QAbstractButton::clicked,
|
QObject::connect(restore_button, &QAbstractButton::clicked,
|
||||||
[this, restore_func, checkbox_restore_func](bool) {
|
[this, restore_func, checkbox_restore_func](bool) {
|
||||||
|
LOG_DEBUG(Frontend, "Restore global state for \"{}\"",
|
||||||
|
setting.GetLabel());
|
||||||
|
|
||||||
restore_button->setEnabled(false);
|
restore_button->setEnabled(false);
|
||||||
restore_button->setVisible(false);
|
restore_button->setVisible(false);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue