mirror of
https://invent.kde.org/network/falkon.git
synced 2024-12-24 12:46:35 +01:00
[TabPreview] Disable tab previews by default
They are too intrusive, so don't force them by default
This commit is contained in:
parent
9b6db07b9c
commit
9eb36830b2
@ -237,7 +237,7 @@ Preferences::Preferences(QupZilla* mainClass, QWidget* parent)
|
||||
ui->dontQuitOnTab->setChecked(settings.value("dontQuitWithOneTab", false).toBool());
|
||||
ui->askWhenClosingMultipleTabs->setChecked(settings.value("AskOnClosing", false).toBool());
|
||||
ui->closedInsteadOpened->setChecked(settings.value("closedInsteadOpenedTabs", false).toBool());
|
||||
ui->showTabPreviews->setChecked(settings.value("showTabPreviews", true).toBool());
|
||||
ui->showTabPreviews->setChecked(settings.value("showTabPreviews", false).toBool());
|
||||
ui->animatedTabPreviews->setChecked(settings.value("tabPreviewAnimationsEnabled", true).toBool());
|
||||
settings.endGroup();
|
||||
|
||||
|
@ -88,7 +88,7 @@ void TabBar::loadSettings()
|
||||
settings.beginGroup("Browser-Tabs-Settings");
|
||||
m_hideTabBarWithOneTab = settings.value("hideTabsWithOneTab", false).toBool();
|
||||
m_tabPreview->setAnimationsEnabled(settings.value("tabPreviewAnimationsEnabled", true).toBool());
|
||||
m_showTabPreviews = settings.value("showTabPreviews", true).toBool();
|
||||
m_showTabPreviews = settings.value("showTabPreviews", false).toBool();
|
||||
bool activateLastTab = settings.value("ActivateLastTabWhenClosingActual", false).toBool();
|
||||
settings.endGroup();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user