Bug 259827 - Present Windows ignore "ignore minimized windows" option.
Summary: Present Windows ignore "ignore minimized windows" option.
Status: RESOLVED FIXED
Alias: None
Product: kwin
Classification: Plasma
Component: compositing (show other bugs)
Version: unspecified
Platform: Gentoo Packages Linux
: NOR normal
Target Milestone: ---
Assignee: KWin default assignee
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2010-12-14 12:33 UTC by Fest
Modified: 2010-12-17 16:11 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Fest 2010-12-14 12:33:21 UTC
Version:           unspecified (using KDE 4.5.85) 
OS:                Linux

I set option "ignore minimized windows" in settings, but minimized windows is shown.

Kwinrc says that option is set too:

[Effect-PresentWindows]
IgnoreMinimized=true

But on activation, present windows show all windows, even minimized ones.


Reproducible: Always
Comment 1 Thomas Lübking 2010-12-17 01:12:34 UTC
only for "current Desktop" mode:
::isVisibleWindow() -> ::isSelectableWindow()
...
    switch( m_mode )
        {
        case ModeAllDesktops:
            break;
        case ModeCurrentDesktop:
            return w->isOnCurrentDesktop();
...

-> looks intended?!
(otherwise lacks "&& !(m_ignoreMinimized && w->isMinimized())"
Comment 2 Martin Flöser 2010-12-17 07:03:09 UTC
> -> looks intended?!
> (otherwise lacks "&& !(m_ignoreMinimized && w->isMinimized())"
>
no, clearly a bug
Comment 3 Thomas Lübking 2010-12-17 16:11:02 UTC
SVN commit 1207336 by luebking:

respect "ignore minimized" for all modes (except tabbox)
BUG: 259827


 M  +6 -4      presentwindows.cpp  


WebSVN link: http://websvn.kde.org/?view=rev&revision=1207336