<br><br><div class="gmail_quote">On Wed, Dec 21, 2011 at 4:55 AM, Guillaume DE BURE <span dir="ltr"><<a href="mailto:guillaume.debure@gmail.com">guillaume.debure@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I'm doing this in 4.7.90 (unstable archlinux packages)<br></blockquote><div><br>You should probably move to KDE compiled from git source.<br> </div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">

<br>
1) widget size:<br>
-------------------<br>
even though I specified the widget size, if the dashboard contains only QML<br>
widgets, they appear with a very small width:<br>
<a href="http://wstaw.org/m/2011/12/20/plasma-desktopVB1577.png" target="_blank">http://wstaw.org/m/2011/12/20/plasma-desktopVB1577.png</a><br>
<a href="http://wstaw.org/m/2011/12/20/plasma-desktopav1577.png" target="_blank">http://wstaw.org/m/2011/12/20/plasma-desktopav1577.png</a><br>
<br>
As soon as I add a C++ widget, the size is correctly computed:<br>
<a href="http://wstaw.org/m/2011/12/20/plasma-desktopbb1577.png" target="_blank">http://wstaw.org/m/2011/12/20/plasma-desktopbb1577.png</a><br>
<br></blockquote><div><br>Try adding "X-Plasma-DefaultSize=600,600" in metadata.desktop and instead of<br>width/height: 600 in main.qml, do the following:<br>property int minimumWidth: 600<br>property int minimumHeight: 600<br>
<br>This might produce expected behavior.<br> <br></div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
2) PlasmaComponents.Label font size:<br>
--------------------------------------------------<br>
For some reason, the font size there is significantly larger than in basic QML<br>
Text component. Any idea why ?<br></blockquote><div><br>You can simply use Text component wherever you just want to display text.<br> </div><blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">

<br>
3) ListView highlight:<br>
---------------------------<br>
With the aforementionned code, I can't seem to get the expected behaviour on<br>
highlighting items in the list. Any idea why ?<br>
<br></blockquote><div><br>The highlight follows the currentItem. So you need to add a MouseArea in your<br>delegate with hoverEnabled: true and onEntered: list.currentIndex = index<br>This will make the hovered item your list's current item and the highlight will<br>
follow it.<br><br>Cheers,<br>Viranch<br></div></div>