Merge commit '7ec349b980bf17185e1f40c8481893cc3c927ed6' into yiffed

This commit is contained in:
Inex Code 2020-10-04 18:43:12 +03:00
commit 69ece82799
1 changed files with 6 additions and 3 deletions

View File

@ -134,7 +134,6 @@ class _ChatState extends State<_Chat> {
@override @override
void initState() { void initState() {
_scrollController.addListener(_updateScrollController); _scrollController.addListener(_updateScrollController);
super.initState(); super.initState();
} }
@ -997,7 +996,10 @@ class _ChatState extends State<_Chat> {
timeout: Duration(seconds: 30) timeout: Duration(seconds: 30)
.inMilliseconds); .inMilliseconds);
} }
setState(() => inputText = text); // Workaround for a current desktop bug
if (!PlatformInfos.isBetaDesktop) {
setState(() => inputText = text);
}
}, },
), ),
), ),
@ -1012,7 +1014,8 @@ class _ChatState extends State<_Chat> {
voiceMessageAction(context), voiceMessageAction(context),
), ),
), ),
if (kIsWeb || inputText.isNotEmpty) if (!PlatformInfos.isMobile ||
inputText.isNotEmpty)
Container( Container(
height: 56, height: 56,
alignment: Alignment.center, alignment: Alignment.center,