Chris Holland

Results 465 comments of Chris Holland

Unfortunately, none of those are in the default breeze icon set (`/usr/share/icons/breeze/`). I could probably check if the symbolic icon exists, then use the fallback coloured version if it doesn't....

So I wrote some simple fallback code, but found out that breeze's `audio-speakers-symbolic` is the "volume icon", which means that while it'll look good in papyrus, it would then look...

The goal is to find a good icon to represent the 3.5mm headphone jack "speaker" in the system tray, that's different from the current volume icon. Ideally it should be...

So my code the fallback to certain icons doesn't work as well as I hoped. `IconItem { source: 'audio-speakers' }` is treated as a valid icon since it is resolving...

Are you using the breeze icon set?

Merci beaucoup! While checking for errors, I noticed that I forgot to make the tooltip labels translatable. If you could translate the following: ``` #: ../contents/ui/MixerItem.qml:243 msgid "Name" msgstr "Nom"...

Weird. I'm applying the event background color if it exists, or the calendar's background color if not. I don't use the foreground color though. Is that what you want it...

Creating an event with "ru" using "test6" creates an event today, starting at 6:05 PM for 1 hour till 7:05 (that's probably when I made the event). Interesting that it...

If you wish to have it the same height as other panel icon widgets, you might be interested in the default CompactRepresentation. * https://github.com/KDE/plasma-desktop/blob/master/desktoppackage/contents/applet/DefaultCompactRepresentation.qml Notice how it'll cap out at...

`Plasmoid.toolTipMainText` and `Plasmoid.icon` need to be attached to your `main.qml` object otherwise they're ignored. Eg: ```diff diff --git a/plasmoid/contents/ui/main.qml b/plasmoid/contents/ui/main.qml index 00330dc..736832f 100644 --- a/plasmoid/contents/ui/main.qml +++ b/plasmoid/contents/ui/main.qml @@ -14,7 +14,8...