~blue-shell/kdebase-workspace/tasks-qml

« back to all changes in this revision

Viewing changes to plasma/desktop/applets/tasks/tasks.cpp

  • Committer: Eike Hein
  • Date: 2013-04-10 14:13:37 UTC
  • Revision ID: git-v1:36c75f2e191de7e252877da097581582a9a7d413
Window highlights on preview hover.

Taking a short break with an easy one off the todo list while
fighting the big fight on launcher layouts :).

Show diffs side-by-side

added added

removed removed

Lines of Context:
438
438
    const bool highlightWindows = cg.readEntry("highlightWindows", false);
439
439
    if (highlightWindows != m_highlightWindows) {
440
440
        m_highlightWindows = highlightWindows;
 
441
        m_declarativeWidget->rootObject()->setProperty("highlightWindows", m_highlightWindows);
441
442
        if (m_highlightWindows) {
442
443
            connect(m_declarativeWidget->rootObject(), SIGNAL(itemHovered(int,bool)), this, SLOT(itemHovered(int,bool)));
443
444
        } else {