mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-30 16:29:30 +01:00
Merge branch 'krille/hot-fixes' into 'main'
Krille/hot fixes See merge request famedly/fluffychat!856
This commit is contained in:
commit
b1417c07b3
@ -14,6 +14,9 @@
|
||||
- feat: allow to create widgets (TheOneWithTheBraid)
|
||||
- feat: remove diacritics (henri2h)
|
||||
- feat: irish language support (Graeme Power)
|
||||
- feat: Enable screensharing on Mobile
|
||||
- feat: support AppImage builds
|
||||
- feat: Improve spaces design
|
||||
- fix: Android theme is not auto updating when system theme changes (Krille Fear)
|
||||
- fix: Chat view becomes gray for a second on sending reaction (Krille Fear)
|
||||
- fix: Don't request new thumbnail resolution on every window resize (Samuel Mezger)
|
||||
|
@ -155,11 +155,14 @@ class ChatListItem extends StatelessWidget {
|
||||
? 20.0
|
||||
: 14.0
|
||||
: 0.0;
|
||||
return ListTile(
|
||||
selected: selected || activeChat,
|
||||
selectedTileColor: selected
|
||||
return Material(
|
||||
color: selected
|
||||
? Theme.of(context).primaryColor.withAlpha(100)
|
||||
: Theme.of(context).secondaryHeaderColor,
|
||||
: activeChat
|
||||
? Theme.of(context).secondaryHeaderColor
|
||||
: Colors.transparent,
|
||||
child: ListTile(
|
||||
selected: selected || activeChat,
|
||||
onLongPress: onLongPress as void Function()?,
|
||||
leading: selected
|
||||
? SizedBox(
|
||||
@ -321,6 +324,7 @@ class ChatListItem extends StatelessWidget {
|
||||
],
|
||||
),
|
||||
onTap: () => clickAction(context),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user