Disable hidden previews, they are still a bit buggy (wrong focus after desktop change).
svn path=/trunk/KDE/kdebase/workspace/; revision=726698
This commit is contained in:
parent
d2e8675051
commit
745d101733
2 changed files with 1 additions and 2 deletions
|
@ -87,7 +87,6 @@ KDE 4.0 TODO
|
||||||
|
|
||||||
/ handling of window pixmaps for unmapped windows [Seli]
|
/ handling of window pixmaps for unmapped windows [Seli]
|
||||||
- config option?
|
- config option?
|
||||||
- strict binding
|
|
||||||
|
|
||||||
- shm mode needs support for more data formats than GL_BGRA
|
- shm mode needs support for more data formats than GL_BGRA
|
||||||
|
|
||||||
|
|
|
@ -181,7 +181,7 @@ unsigned long Options::updateSettings()
|
||||||
config=KConfigGroup(_config,"Compositing");
|
config=KConfigGroup(_config,"Compositing");
|
||||||
refreshRate = config.readEntry( "RefreshRate", 0 );
|
refreshRate = config.readEntry( "RefreshRate", 0 );
|
||||||
const HiddenPreviews hps[] = { HiddenPreviewsNever, HiddenPreviewsKeep, HiddenPreviewUpdate, HiddenPreviewsActive };
|
const HiddenPreviews hps[] = { HiddenPreviewsNever, HiddenPreviewsKeep, HiddenPreviewUpdate, HiddenPreviewsActive };
|
||||||
hiddenPreviews = hps[ qBound( 0, config.readEntry( "HiddenPreviews", 3 ), 3 ) ];
|
hiddenPreviews = hps[ qBound( 0, config.readEntry( "HiddenPreviews", 0 ), 3 ) ];
|
||||||
|
|
||||||
// Read button tooltip animation effect from kdeglobals
|
// Read button tooltip animation effect from kdeglobals
|
||||||
// Since we want to allow users to enable window decoration tooltips
|
// Since we want to allow users to enable window decoration tooltips
|
||||||
|
|
Loading…
Reference in a new issue