Re: [SailfishDevel] ScrollDecorators' Colour

2014-06-02 Thread Andrey Kozhevnikov
ScrollDecoator component is just combiner: Item { property Flickable flickable VerticalScrollDecorator { flickable: parent.flickable } HorizontalScrollDecorator { flickable: parent.flickable } } And you can't access individual properties here. 03.06.2014 11:31, Krisztian Olah ?:

Re: [SailfishDevel] ScrollDecorators' Colour

2014-06-02 Thread Krisztian Olah
Thanks Andrey, now it makes complete sense. Just one more question: Then ScrollDecorator is NOT derived from Vertical- and HorizontalScrollDecorator but composes/contains them, right? On 3 June 2014 05:11, Andrey Kozhevnikov wrote: > ScrollDecorator component cannot be colored. Only Vertical a

Re: [SailfishDevel] ScrollDecorators' Colour

2014-06-02 Thread Andrey Kozhevnikov
ScrollDecorator component cannot be colored. Only Vertical and Horizontal separately. Vertical/HorizontalScrollDecorator inherits Rectangle, so you should understand now how to use it ;) 03.06.2014 11:07, Krisztian Olah ?: Ouch, that did hurt. I only checked ScrollDecocartor in QtCreator no

Re: [SailfishDevel] ScrollDecorators' Colour

2014-06-02 Thread Krisztian Olah
Ouch, that did hurt. I only checked ScrollDecocartor in QtCreator not the horizontal or vertical one. Mind you it is not documented at https://sailfishos.org/sailfish-silica/sailfish-silica-all.html for either of them. Sorry for the silly question. :$ On 3 June 2014 04:46, Andrey Kozhevnikov w

Re: [SailfishDevel] ScrollDecorators' Colour

2014-06-02 Thread Andrey Kozhevnikov
ORLY? SilicaListView / SilicaFlickable { ... VerticalScrollDecorator { color: "red" } } 03.06.2014 10:41, Krisztian Olah ?: Hi list, Is it possible to change the colour of the ScrollDecorator component? I couldn't find anything regarding this in the Silica reference nor anywher

[SailfishDevel] ScrollDecorators' Colour

2014-06-02 Thread Krisztian Olah
Hi list, Is it possible to change the colour of the ScrollDecorator component? I couldn't find anything regarding this in the Silica reference nor anywhere else. I remembered that the browser has been opened so I checked in the source, but it seems to have been reimplemented in QML. ScrollDeco