Zren / plasma-applet-eventcalendar

https://store.kde.org/p/998901/
465 stars 92 forks source link

Allow more than two lines of formatted date display #340

Closed crabdancing closed 1 year ago

crabdancing commented 1 year ago

In use cases where the panel is positioned vertically, it can be useful to separate date and time information into more lines, but the configuration panel only allows a maximum of two. The ideal would be to have a + button that allows an indefinite number. :) image

Zren commented 1 year ago

You can put '<br>' (don't forget the single quotes) to add an extra line. Make sure to add more space in the fixed height setting too.

https://doc.qt.io/qt-5/qml-qtquick-text.html#textFormat-prop

The clock formatting is complicated enough that I don't really want to officially support up to 10 lines of text...

crabdancing commented 1 year ago

Ah, gotcha thanks