Merge branch 'krille/hot-fixes' into 'main'
Krille/hot fixes See merge request famedly/fluffychat!856
This commit is contained in:
commit
fc9dde6e50
2 changed files with 158 additions and 151 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue