Nico[m] | It would be cool, if sailfish supported gestures on a touchpad like on the pinetab. 3 fingers for the various edge swipes for example | 01:03 |
---|---|---|
*** zbenjamin_ is now known as zbenjamin | 02:17 | |
*** frinring_ is now known as frinring | 02:51 | |
rinigus | piggz: then you would have to check out src of wrapper components. I may have cut some corners with it | 05:14 |
Tekk_ | Seems like the only qt-qml binding only supports qt 5.9 :( | 05:19 |
Tekk_ | Least the license issue was resolved | 05:19 |
Tomin | hmm. I'm pretty sure I have installed Sailfish Application SDK on a recent Fedora | 07:49 |
Tomin | I have compat-openssl10-1.0.2o-11.fc33.src.rpm installed though | 07:49 |
Tomin | erm. not that one, this compat-openssl10-1.0.2o-11.fc33.x86_64 | 07:50 |
Tomin | :D | 07:50 |
*** gigetoo_ is now known as gigetoo | 08:28 | |
abranson | yeah they kept a 1.0 version hanging around for a long time for exactly this sort of reason. in fact I think the last version we used came from there. | 08:58 |
*** gigetoo_ is now known as gigetoo | 13:00 | |
piggz | rinigus: heh, until now, i never knew of implicitHeight / width !! | 16:54 |
Tekk_ | hey, is the documentation for the silica drawer incorrect? I defined a drawer with a background of a list and then a label inside of the Drawer on its own but the Drawer never appears in my app. | 17:12 |
Tekk_ | At th etop there's something about it being deprecated (or a use of it being deprecated) so I'm not totally sure? | 17:13 |
rinigus | piggz: such multiplatform support does allow you to learn something :) | 17:26 |
Tekk_ | I don't see anything in the logs about Drawers being unrecognized, at least. | 17:43 |
attah | Is it possible to use a Silica ContextMenu on something that is not inside a ListView, like e.g. in a Column? | 19:24 |
Tekk_ | Hey, is there some rule to colors I don't understand? I've got a label whose text I want to change color on based on the thing being displayed (an urgent alert is in the error color for example). I tried putting {text: "foo"; color: Theme.highlightColor} into my model (for example) then setting color: color in the delegate, but the text ends up unthemed. If I directly do color: Theme.highlightColor in the delegate it works fine. Is it | 19:52 |
Tekk_ | not able to handle a level of indirection like that? | 19:52 |
Nico[m] | You are probably reusing the same name | 19:53 |
Nico[m] | Try model.color or modelData.color | 19:53 |
Tekk_ | Nico[m]: I went and renamed the property to textColor. color: textColor is unthemed but no errors. model.textColor says it can't assign a QJSValue to a color, modelData.textColor says modelData isn't defined | 19:57 |
Nico[m] | The former sounds like it converts that to the wrong type | 19:58 |
Nico[m] | I.e. you are constructing a js object, so that is not a colour and because of that it gets converted to null or so | 19:59 |
Nico[m] | It may be better to store a bool or so in the js object and then do `color: model.highlight ? Theme.highlightColour : "red"` or so | 20:00 |
Tekk_ | I swear that didn't work earlier today but it does now, so I'm not complaining | 20:04 |
Nico[m] | :D | 20:05 |
Nico[m] | Probably because you used color instead of model.color | 20:05 |
Tekk_ | Nah. before it was color: important ? Theme.errorColor : Theme.highlightColor just like now pretty much | 20:21 |
Generated by irclog2html.py 2.17.1 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!