~unity-team/unity8/hotfix-launcher-on-dash

« back to all changes in this revision

Viewing changes to qml/Shell.qml

  • Committer: Michael Terry
  • Date: 2014-05-05 22:07:57 UTC
  • mfrom: (881 unity8)
  • mto: (138.5.2 split-logrotate)
  • mto: This revision was merged to the branch mainline in revision 933.
  • Revision ID: michael.terry@canonical.com-20140505220757-dwz5ulj42vz1ahxv
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
440
440
            }
441
441
        }
442
442
 
 
443
        Rectangle {
 
444
            id: modalNotificationBackground
 
445
 
 
446
            visible: notifications.useModal && !greeter.shown && (notifications.state == "narrow")
 
447
            color: "#000000"
 
448
            anchors.fill: parent
 
449
            opacity: 0.5
 
450
 
 
451
            MouseArea {
 
452
                anchors.fill: parent
 
453
            }
 
454
 
 
455
            InputFilterArea {
 
456
                anchors.fill: parent
 
457
                blockInput: modalNotificationBackground.visible
 
458
            }
 
459
        }
 
460
 
443
461
        Notifications {
444
462
            id: notifications
445
463