mirror of
https://bitbucket.org/smil3y/kde-extraapps.git
synced 2025-02-24 02:42:52 +00:00
kdeplasma-addons: disable windows highlight option of icontasks applet by default
that option is so bogus for any window that is maximized - as soon as the window is highlighted it will cover the entire screen but there is option to show preview too meaning both preview and the window may be shown. which one should be on top tho? Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
6e18f266ef
commit
686f2162e1
1 changed files with 2 additions and 2 deletions
|
@ -112,7 +112,7 @@ static const int constMaxIconScale = 100;
|
|||
Tasks::Tasks(QObject* parent, const QVariantList &arguments)
|
||||
: Plasma::Applet(parent, arguments),
|
||||
m_toolTips(TT_Instant),
|
||||
m_highlightWindows(true),
|
||||
m_highlightWindows(false),
|
||||
m_launcherIcons(false),
|
||||
m_groupClick(GC_PresentWindows),
|
||||
m_rotate(false),
|
||||
|
@ -320,7 +320,7 @@ void Tasks::configChanged()
|
|||
changed = true;
|
||||
}
|
||||
|
||||
const bool highlightWindows = cg.readEntry("highlightWindows", true);
|
||||
const bool highlightWindows = cg.readEntry("highlightWindows", false);
|
||||
if (highlightWindows != m_highlightWindows) {
|
||||
m_highlightWindows = highlightWindows;
|
||||
changed = true;
|
||||
|
|
Loading…
Add table
Reference in a new issue