Chris Holland

Results 465 comments of Chris Holland

I can reproduce the issue. For some reason, it doesn't affect the "Recent App" context menu, the normal app list context menu, nor the search context menu. Looks like the...

Related Discussion: https://old.reddit.com/r/kde/comments/w0kd1o/most_menu_launchers_do_not_show_files_and_folders/

So after un-disabling baloo file search (limited to a single test directory), I've found out the following: * Krunner works. * Kickoff works. * Kicker does not. * Tiled Menu...

There might be some way of making the SVG inherit the colors, but I haven't skimmed through Plasma6 enough to see it yet.

Blarg this is easier than I thought, for monocolor symbolic icons at least. https://api.kde.org/frameworks/kirigami/html/classIcon.html#a3d2456bbe8dd3ff3b43b4637591b6ed5 ```qml Kirigami.Icon { isMask: true // Force color color: button.checked ? Kirigami.Theme.highlightColor : Kirigami.Theme.textColor } ```...

Hmm, looks like upstream plasma also noticed this issue with Breeze Twilight. There's a few PRs that were merged that always use the color scheme. I'll need to test after...

Ah the section headers. * https://github.com/Zren/plasma-applet-tiledmenu/blob/master/package/contents/ui/KickerSectionHeader.qml * https://github.com/Zren/plasma-applet-tiledmenu/blob/master/package/contents/ui/KickerListView.qml In the `MouseArea`'s `implicitHeight: listView.iconSize`, try adding `+ PlasmaCore.Units.largeSpacing * 2`. The Text/Label is already vertically centered. https://develop.kde.org/docs/extend/plasma/widget/testing/

I meant: ```qml // implicitHeight: listView.iconSize implicitHeight: listView.iconSize + PlasmaCore.Units.largeSpacing * 2 // implicitHeight: listView.iconSize + PlasmaCore.Units.smallSpacing * 2 // implicitHeight: listView.iconSize + 10 * PlasmaCore.Units.devicePixelRatio * 2 ``` `devicePixelRatio`...

I'm using someone elses code for File I/O, so I can't choose which folder (`~/.local/share/plasma_notes/`). Perhaps if you (back it up first) delete the folder and make it a symlink...

In the background color popup, there should be "Alpha Channel: 255". Or just type `#20FF0000` for a 12% transparent red. Note: `#AARRGGBB`