Re: [SailfishDevel] Is support for commercial apps a TABOO subject?

2014-07-18 Thread sfietkonstantin
Hello, I nemo-qml-plugin-configuration is not used to manage settings inside the Settings app, you need actually to put some QML files in specific subfolders (/usr/share/jolla-settings/something) of the system. However, you are not allowed to install files here. I think that (for now), the

Re: [SailfishDevel] Updates to resource policy implementation in QtMultimedia (update8)

2014-07-18 Thread Juho Hämäläinen
On 04.07.2014 23:57, Tomasz Sterna wrote: Dnia 2014-07-03, czw o godzinie 14:56 +0300, Juho Hämäläinen pisze: (So say system volume is 50%, Audio object volume is ramped from 0% to 100%, Audio object volume stays at 100% until user presses volume up, and then system volume changes to 55% and

Re: [SailfishDevel] Updates to resource policy implementation in QtMultimedia (update8)

2014-07-18 Thread Tomasz Sterna
Dnia 2014-07-18, pią o godzinie 11:46 +0300, Juho Hämäläinen pisze: You don't need to get the system volume level, when using QSoundEffect or QMediaPlayer without changing the volume of those objects, the volume they use is system volume. Yeah. But this is only after latest update. Before,

Re: [SailfishDevel] Kernel bug in /proc/stat

2014-07-18 Thread Philippe De Swert
Hi, On 16/07/14 21:51, Ales Katona wrote: Here's an example of a bogus cpu usage reported by top on the phone. Regression still present with latest release. http://www.bistrecode.com/jolla_top_bug.png I saw the post on tjc and here. However I have not seen the behaviour. Do you have some

Re: [SailfishDevel] How to properly hide and show UI elements?

2014-07-18 Thread Dmitriy Purgin
so you try to hide a component by setting its height = 0? have you tried visible = false? 2014-07-18 16:30 GMT+06:00 Marcin M. marmistrz...@gmail.com: I'm want to display some elements only when needed. So I did it like this (the components are inside a Column): TextSwitch

Re: [SailfishDevel] How to properly hide and show UI elements?

2014-07-18 Thread marmistrzmar
Visible = false is instant so it can't be animated. It won't look really nice without animation On 18.07.2014 12:42 Dmitriy Purgin wrote: so you try to hide a component by setting its height = 0? have you tried visible = false? 2014-07-18 16:30 GMT+06:00 Marcin M. marmistrz...@gmail.com:

Re: [SailfishDevel] How to properly hide and show UI elements?

2014-07-18 Thread sfietkonstantin
Add an opacity change from 1 to 0 inside your animation ? Or add a SequentialAnimation with a PropertyChanges to set visible at false at end of animation. Don't forget to disable reversible property, and write the reverse animation too. - Mail original - De: marmistrz...@gmail.com À:

Re: [SailfishDevel] How to properly hide and show UI elements?

2014-07-18 Thread Marcin M.
OK, I thought it might be that the size of the inner elements is still 0, so did like that (bolded changes) Row { id: root property string color: transparent width: parent.width Rectangle { id: colorIndicator color: root.color width:

Re: [SailfishDevel] How to properly hide and show UI elements?

2014-07-18 Thread Tomasz Sterna
Dnia 2014-07-18, pią o godzinie 16:31 +0200, Marcin M. pisze: The Rectangle hides and so Button's label does. It doesn't work with the Button. And after enabling and disabling the effect is similar as previously. The button doesn't react if clicked. Seems I'll have go for opacity, still the

Re: [SailfishDevel] How to properly hide and show UI elements?

2014-07-18 Thread Marcin M.
Oh, right. It was so trivial. I totally forgot about it. Thanks! -- Marcin 2014-07-18 17:10 GMT+02:00 Tomasz Sterna to...@xiaoka.com: Dnia 2014-07-18, pią o godzinie 16:31 +0200, Marcin M. pisze: The Rectangle hides and so Button's label does. It doesn't work with the Button. And after