Merge pull request #2991 from akortunov/launcher

Use two columns when there is too many checkboxes in launcher's tab
pull/593/head
Bret Curtis 4 years ago committed by GitHub
commit 74ba6197ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -127,7 +127,7 @@ bool Launcher::AdvancedPage::loadSettings()
{
loadSettingBool(viewOverShoulderCheckBox, "view over shoulder", "Camera");
connect(viewOverShoulderCheckBox, SIGNAL(toggled(bool)), this, SLOT(slotViewOverShoulderToggled(bool)));
viewOverShoulderGroup->setEnabled(viewOverShoulderCheckBox->checkState());
viewOverShoulderVerticalLayout->setEnabled(viewOverShoulderCheckBox->checkState());
loadSettingBool(autoSwitchShoulderCheckBox, "auto switch shoulder", "Camera");
loadSettingBool(previewIfStandStillCheckBox, "preview if stand still", "Camera");
loadSettingBool(deferredPreviewRotationCheckBox, "deferred preview rotation", "Camera");
@ -339,5 +339,5 @@ void Launcher::AdvancedPage::slotAnimSourcesToggled(bool checked)
void Launcher::AdvancedPage::slotViewOverShoulderToggled(bool checked)
{
viewOverShoulderGroup->setEnabled(viewOverShoulderCheckBox->checkState());
viewOverShoulderVerticalLayout->setEnabled(viewOverShoulderCheckBox->checkState());
}

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save