Enable the mouse tracking plugin by default.
svn path=/trunk/KDE/kdebase/workspace/; revision=829757
This commit is contained in:
parent
de22f6b69b
commit
a822eadc64
2 changed files with 4 additions and 2 deletions
|
@ -109,5 +109,5 @@ X-KDE-PluginInfo-Version=0.1.0
|
|||
X-KDE-PluginInfo-Category=Accessibility
|
||||
X-KDE-PluginInfo-Depends=
|
||||
X-KDE-PluginInfo-License=GPL
|
||||
X-KDE-PluginInfo-EnabledByDefault=false
|
||||
X-KDE-PluginInfo-EnabledByDefault=true
|
||||
X-KDE-Library=kwin4_effect_builtins
|
||||
|
|
|
@ -208,7 +208,8 @@ void KWinCompositingConfig::loadGeneralTab()
|
|||
int winManagementEnabled = LOAD_EFFECT_CONFIG("presentwindows")
|
||||
+ LOAD_EFFECT_CONFIG("boxswitch")
|
||||
+ LOAD_EFFECT_CONFIG("desktopgrid")
|
||||
+ LOAD_EFFECT_CONFIG("dialogparent");
|
||||
+ LOAD_EFFECT_CONFIG("dialogparent")
|
||||
+ LOAD_EFFECT_CONFIG("trackmouse");
|
||||
if (winManagementEnabled > 0 && winManagementEnabled < 4) {
|
||||
ui.effectWinManagement->setTristate(true);
|
||||
ui.effectWinManagement->setCheckState(Qt::PartiallyChecked);
|
||||
|
@ -268,6 +269,7 @@ void KWinCompositingConfig::saveGeneralTab()
|
|||
WRITE_EFFECT_CONFIG("boxswitch", ui.effectWinManagement);
|
||||
WRITE_EFFECT_CONFIG("desktopgrid", ui.effectWinManagement);
|
||||
WRITE_EFFECT_CONFIG("dialogparent", ui.effectWinManagement);
|
||||
WRITE_EFFECT_CONFIG("trackmouse", ui.effectWinManagement);
|
||||
}
|
||||
WRITE_EFFECT_CONFIG("shadow", ui.effectShadows);
|
||||
// TODO: maybe also do some effect-specific configuration here, e.g.
|
||||
|
|
Loading…
Reference in a new issue