diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2013-10-24 20:11:34 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-10-24 20:11:34 +0200 |
commit | 4e5c2c20528c0540545a87d08ebd6a3b798c8e3b (patch) | |
tree | d151f4a650f9f55323d2413960d46a0fdf781dcf | |
parent | dd68da828b89fc5f0082ab26e6cf967ed1406442 (diff) | |
download | tdebase-4e5c2c20528c0540545a87d08ebd6a3b798c8e3b.tar.gz tdebase-4e5c2c20528c0540545a87d08ebd6a3b798c8e3b.zip |
Fix defaults for tabbar mouse wheel in konsole and konqueror
-rw-r--r-- | kcontrol/konqhtml/advancedTabDialog.cpp | 2 | ||||
-rw-r--r-- | konsole/konsole/konsole.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/kcontrol/konqhtml/advancedTabDialog.cpp b/kcontrol/konqhtml/advancedTabDialog.cpp index d9a995588..10e62fd53 100644 --- a/kcontrol/konqhtml/advancedTabDialog.cpp +++ b/kcontrol/konqhtml/advancedTabDialog.cpp @@ -87,7 +87,7 @@ void advancedTabDialog::load() m_pConfig->setGroup("FMSettings"); m_advancedWidget->m_pShowMMBInTabs->setChecked( m_pConfig->readBoolEntry( "MMBOpensTab", false ) ); m_advancedWidget->m_pDynamicTabbarHide->setChecked( !(m_pConfig->readBoolEntry( "AlwaysTabbedMode", false )) ); - m_advancedWidget->m_pDynamicTabbarCycle->setChecked( m_pConfig->readBoolEntry( "TabsCycleWheel", false ) ); + m_advancedWidget->m_pDynamicTabbarCycle->setChecked( m_pConfig->readBoolEntry( "TabsCycleWheel", true ) ); m_advancedWidget->m_pNewTabsInBackground->setChecked( ! (m_pConfig->readBoolEntry( "NewTabsInFront", false )) ); m_advancedWidget->m_pOpenAfterCurrentPage->setChecked( m_pConfig->readBoolEntry( "OpenAfterCurrentPage", false ) ); m_advancedWidget->m_pPermanentCloseButton->setChecked( m_pConfig->readBoolEntry( "PermanentCloseButton", false ) ); diff --git a/konsole/konsole/konsole.cpp b/konsole/konsole/konsole.cpp index 0cb65310e..9f694ca72 100644 --- a/konsole/konsole/konsole.cpp +++ b/konsole/konsole/konsole.cpp @@ -1627,7 +1627,7 @@ void Konsole::readProperties(TDEConfig* config, const TQString &schema, bool glo b_xonXoff = config->readBoolEntry("XonXoff",false); b_matchTabWinTitle = config->readBoolEntry("MatchTabWinTitle",false); - b_mouseWheelScroll = config->readBoolEntry("TabsCycleWheel",false); + b_mouseWheelScroll = config->readBoolEntry("TabsCycleWheel",true); config->setGroup("UTMP"); b_addToUtmp = config->readBoolEntry("AddToUtmp",true); config->setDesktopGroup(); |