~nskaggs/ubuntu-ui-toolkit/add-popover-object-support

« back to all changes in this revision

Viewing changes to modules/Ubuntu/Components/Themes/Ambiance/ScrollbarStyle.qml

  • Committer: CI bot
  • Author(s): Zsombor Egri, Tarmac, Zoltán Balogh
  • Date: 2014-06-18 17:10:31 UTC
  • mfrom: (1000.76.9 landing_04-06)
  • Revision ID: ps-jenkins@lists.canonical.com-20140618171031-1s026ulaxymh2e9f
  [Leo Arias ]
  * On the autopilot helper for the header, fix the swipe to show
    when hidden.
  * Added a fixture for autopilot tests to use a fake home directory.
    Fixes: https://bugs.launchpad.net/bugs/1317639
  * Cleaned the containers in unity test using the alternate
    launcher.

  [ Christian Dywan ]   
  * Add a launcher with a switch for the QQMLEngine.

  [ Tim Peeters ]
  * Anchor the internal PageTreeNode of PageStack to fill its parent.
    Fixes: https://bugs.launchpad.net/bugs/1322527
 

Show diffs side-by-side

added added

removed removed

Lines of Context:
59
59
    property bool interactive: false
60
60
    property real minimumSliderSize: units.gu(2)
61
61
 
62
 
    property bool overlay: true
 
62
    property bool overlay: !interactive
63
63
    property real overlayOpacityWhenShown: 0.6
64
64
    property real overlayOpacityWhenHidden: 0.0
65
65
 
222
222
        onReleased: mouse.accepted = false
223
223
    }
224
224
 
 
225
    // The presence of a mouse enables the interactive thumb
 
226
    // FIXME: Should use form factor hints
 
227
    InverseMouse.onEntered: interactive = true
225
228
 
226
229
    // The slider's position represents which part of the flickable is visible.
227
230
    // The slider's size represents the size the visible part relative to the
401
404
 
402
405
    Item {
403
406
        id: thumb
 
407
        objectName: "interactiveScrollbarThumb"
404
408
 
405
409
        enabled: interactive
406
410