Chris Holland
Chris Holland
The widget was moved to it's own repo: https://github.com/Zren/plasma-applet-tiledmenu I'll check this out tonight.
Oh this isn't a typical feature request I see, you forked the widget! Awesome! I'll toss your code into a git branch to compare the changes. Your changes: * https://github.com/Zren/plasma-applet-tiledmenu/commit/ed802ed4ea570d405c9cb7b655f798e18d5187aa...
> the Username disappeared totally here for me Oh right. I forgot to make it always "expanded" / "labelVisible" after refactoring that code. https://github.com/Zren/plasma-applet-tiledmenu/commit/7b8bf8d0d8745deecd3b2974007d94b0c7afa886 Not sure about the backgrounds. I'll...
Does clicking the bottom-left corner of the screen open the menu? Or do you need to move the cursor right a little bit to open the menu? To see the...
Huh, apparently I had some rectangles there already for debugging: https://github.com/Zren/plasma-applet-tiledmenu/blob/master/package/contents/ui/LauncherIcon.qml#L65-L67 In a panel, the `Layout.maximumWidth: size` is what controls the maximum width it grows to. The `Layout.minimumWidth` is equal...
Thanks for the translations! I've credited you in the commit. Could you also translate the following? I forgot to run the script to merge the new strings. ```po #: ../contents/ui/config/ConfigGeneral.qml:239...
While testing [`QQC2.ScrollView`](https://doc.qt.io/qt-5/qml-qtquick-controls2-scrollview.html) with [`ListView`](https://doc.qt.io/qt-5/qml-qtquick-listview.html), I remembered the ListView has section headers. Appearently it can also stay fixed to the top too. It's drawn on top though. We'd need to...
 Android Google Calendar has an option to toggle "Week 36, " but will always show the following in the agenda view: * Nov 22 - 28 * Nov 29...
Unfortunately it's not that easy. * That QML date type is the same as the EMAC JS Date type which doesn't have that function. * https://github.com/qt/qtdeclarative/blob/dev/src/qml/jsruntime/qv4dateobject_p.h * The CalendarModel provides...
Also, a centered week separator can be done with: ```qml section.delegate: RowLayout { required property string section width: agendaScrollView.width Rectangle { Layout.fillWidth: true implicitWidth: 1 * units.devicePixelRatio implicitHeight: 1 *...