fix: Cannot change send on enter on desktop

This commit is contained in:
krille-chan 2023-12-23 09:17:31 +01:00
commit 3d622b8918
No known key found for this signature in database
4 changed files with 6 additions and 6 deletions

View file

@ -394,9 +394,7 @@ class InputBar extends StatelessWidget {
@override
Widget build(BuildContext context) {
final useShortCuts = (PlatformInfos.isWeb ||
PlatformInfos.isDesktop ||
AppConfig.sendOnEnter);
final useShortCuts = (AppConfig.sendOnEnter ?? !PlatformInfos.isMobile);
return Shortcuts(
shortcuts: !useShortCuts
? {}