min size for posts

This commit is contained in:
zoe 2022-08-28 12:14:49 +02:00
parent 5ca039aadf
commit 383fb16298
2 changed files with 2 additions and 1 deletions

View File

@ -154,7 +154,7 @@ class _InteractionButtonState extends State<InteractionButton> {
);
}
if (global.settings!.identities.length == 1 || !widget.extended) {
if (!widget.extended) {
return IconButton(
tooltip: widget.type.name,
onPressed: () async {

View File

@ -26,6 +26,7 @@ class Thread extends StatelessWidget {
56,
constraints: BoxConstraints(
maxWidth: global.settings!.maxPostWidth,
minWidth: 375,
),
decoration: BoxDecoration(
color: Theme.of(context).colorScheme.surface,