RoomDelegate last event time year
This commit is contained in:
parent
656dbbdf4a
commit
da4bb55f43
1
TODO.md
1
TODO.md
|
@ -13,7 +13,6 @@
|
|||
- Fixes
|
||||
- (Left?)Banner binding loop
|
||||
- Reloading config files (cache)
|
||||
- Ignore @ when filtering members
|
||||
- Tiny invisible scrollbar
|
||||
- Run import in thread and AsyncClient.olm functions, they block async loop
|
||||
- Handle import keys errors
|
||||
|
|
|
@ -70,7 +70,10 @@ HInteractiveRectangle {
|
|||
|
||||
Utils.dateIsYesterday(evDate) ? qsTr("Yesterday") :
|
||||
|
||||
Qt.formatDate(evDate, "dd MMM") // e.g. "24 Nov"
|
||||
evDate.getFullYear() == new Date().getFullYear() ?
|
||||
Qt.formatDate(evDate, "dd MMM") : // e.g. "24 Nov"
|
||||
|
||||
evDate.getFullYear()
|
||||
|
||||
visible: Layout.maximumWidth > 0
|
||||
Layout.maximumWidth:
|
||||
|
|
Loading…
Reference in New Issue
Block a user