mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-27 12:04:16 +01:00
Large Screen Proportion config is greyed out when Large Screen is not selected
This commit is contained in:
parent
1d04033029
commit
1d318f7486
@ -25,7 +25,17 @@ ConfigureLayout::ConfigureLayout(QWidget* parent)
|
|||||||
connect(ui->layout_combobox,
|
connect(ui->layout_combobox,
|
||||||
static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this,
|
static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this,
|
||||||
[this](int currentIndex) {
|
[this](int currentIndex) {
|
||||||
ui->custom_layout_group->setEnabled(ui->layout_combobox->currentIndex() == 6);
|
ui->custom_layout_group->setEnabled(ui->layout_combobox->currentIndex() ==
|
||||||
|
(uint)(Settings::LayoutOption::CustomLayout));
|
||||||
|
});
|
||||||
|
|
||||||
|
ui->large_screen_proportion->setEnabled(
|
||||||
|
(Settings::values.layout_option.GetValue() == Settings::LayoutOption::LargeScreen));
|
||||||
|
connect(
|
||||||
|
ui->layout_combobox, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged),
|
||||||
|
this, [this](int currentIndex) {
|
||||||
|
ui->large_screen_proportion->setEnabled(ui->layout_combobox->currentIndex() ==
|
||||||
|
(uint)(Settings::LayoutOption::LargeScreen));
|
||||||
});
|
});
|
||||||
|
|
||||||
connect(ui->bg_button, &QPushButton::clicked, this, [this] {
|
connect(ui->bg_button, &QPushButton::clicked, this, [this] {
|
||||||
|
Loading…
Reference in New Issue
Block a user