~mterry/unity8/greeter-arrangement

« back to all changes in this revision

Viewing changes to qml/Greeter/Greeter.qml

  • Committer: Michael Terry
  • Date: 2016-08-30 14:06:47 UTC
  • Revision ID: michael.terry@canonical.com-20160830140647-0gmw15jq769d2g1q
Use the default system wallpaper instead of our custom one.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
    property real dragHandleLeftMargin: 0
35
35
 
36
36
    property url background
 
37
    property bool hasCustomBackground
37
38
 
38
39
    // How far to offset the top greeter layer during a launcher left-drag
39
40
    property real launcherOffset
437
438
 
438
439
        Binding {
439
440
            target: loader.item
 
441
            property: "hasCustomBackground"
 
442
            value: root.hasCustomBackground
 
443
        }
 
444
 
 
445
        Binding {
 
446
            target: loader.item
440
447
            property: "locked"
441
448
            value: root.locked
442
449
        }