chore: Follow up hovermenu

krille/new-html-formatting rc1.19.0-3
krille-chan 2 years ago
parent c51fc600a2
commit f4196f38c3
No known key found for this signature in database

@ -484,7 +484,7 @@ class Message extends StatelessWidget {
Positioned( Positioned(
left: ownMessage ? null : 48, left: ownMessage ? null : 48,
right: ownMessage ? 4 : null, right: ownMessage ? 4 : null,
bottom: showReceiptsRow ? 28 : 0, top: displayTime ? 38 : 0,
child: AnimatedScale( child: AnimatedScale(
duration: Duration( duration: Duration(
milliseconds: milliseconds:
@ -507,19 +507,22 @@ class Message extends StatelessWidget {
child: Row( child: Row(
mainAxisSize: MainAxisSize.min, mainAxisSize: MainAxisSize.min,
children: [ children: [
if (event.room.canSendDefaultMessages)
SizedBox( SizedBox(
width: 32, width: 32,
height: 32, height: 32,
child: IconButton( child: IconButton(
icon: Icon( icon: Icon(
Icons.check_circle_outline_outlined, Icons.reply_outlined,
size: 16, size: 16,
color: Theme.of(context) color: Theme.of(context)
.colorScheme .colorScheme
.onTertiaryContainer, .onTertiaryContainer,
), ),
tooltip: L10n.of(context)!.select, tooltip: L10n.of(context)!.reply,
onPressed: () => onSelect(event), onPressed: event.room.canSendDefaultMessages
? () => onSwipe()
: null,
), ),
), ),
SizedBox( SizedBox(
@ -527,14 +530,14 @@ class Message extends StatelessWidget {
height: 32, height: 32,
child: IconButton( child: IconButton(
icon: Icon( icon: Icon(
Icons.reply_outlined, Icons.more_vert,
size: 16, size: 16,
color: Theme.of(context) color: Theme.of(context)
.colorScheme .colorScheme
.onTertiaryContainer, .onTertiaryContainer,
), ),
tooltip: L10n.of(context)!.reply, tooltip: L10n.of(context)!.select,
onPressed: () => onSwipe(), onPressed: () => onSelect(event),
), ),
), ),
], ],

Loading…
Cancel
Save