mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
further fix setting collision
This commit is contained in:
parent
9d2d18ceee
commit
069e42360b
1 changed files with 1 additions and 2 deletions
|
@ -113,7 +113,6 @@ void SettingsDialog::addTabs()
|
|||
QVBoxLayout *SettingsDialog::createAccountsTab()
|
||||
{
|
||||
auto layout = new QVBoxLayout();
|
||||
singletons::SettingManager &settings = singletons::SettingManager::getInstance();
|
||||
|
||||
// add remove buttons
|
||||
auto buttonBox = new QDialogButtonBox(this);
|
||||
|
@ -281,7 +280,7 @@ QVBoxLayout *SettingsDialog::createAppearanceTab()
|
|||
form->addRow("Scrolling:", enableSmoothScrolling);
|
||||
|
||||
auto enableSmoothScrollingNewMessages = createCheckbox(
|
||||
"Enable smooth scrolling for new messages", settings.enableSmoothScrolling);
|
||||
"Enable smooth scrolling for new messages", settings.enableSmoothScrollingNewMessages);
|
||||
form->addRow("", enableSmoothScrollingNewMessages);
|
||||
|
||||
group->setLayout(form);
|
||||
|
|
Loading…
Reference in a new issue