Comment 9 for bug 1165173

Revision history for this message
Florian Boucault (fboucault) wrote : Re: Overlay Scrollbars Not Working In Qml

The good news is that interactive scrollbars with a thumb (== overlay scrollbars as we know them on the desktop) are implemented in the UI toolkit. However they are not configured to behave like that. To configure them in that manner a couple of theme properties need to be changed in themes/Ambiance/qmltheme/default.qmltheme:

.scrollbar {
    interactive: true;
    overlay: false;
    overlayOpacityWhenShown: 1.0;
[...]
}

Now the idea is to have the thumbs enabled automatically when and only when the app is running on a 'desktop' computer (ie. when a mouse is available).