Merge pull request 'Clean up sender side image preview' (#328) from sender_size into trunk
continuous-integration/drone/push Build is passing Details

Reviewed-on: #328
Reviewed-by: erinn <erinn@openprivacy.ca>
This commit is contained in:
erinn 2022-01-20 22:55:20 +00:00
commit 0a3837c8b5
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ class FileBubbleState extends State<FileBubble> {
crossAxisAlignment: fromMe ? CrossAxisAlignment.end : CrossAxisAlignment.start,
mainAxisAlignment: fromMe ? MainAxisAlignment.end : MainAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: fromMe ? [wdgMessage, Visibility(visible: widget.interactive, child: wdgDecorations)] : [wdgSender, isPreview ? Container() : wdgMessage, wdgDecorations]),
children: [wdgSender, isPreview ? Container() : wdgMessage, wdgDecorations]),
));
});
}