Matthias Nott
2026-03-22 16893f9606d43171992199cf2529f3774a226b84
lib/screens/chat_screen.dart
....@@ -879,7 +879,10 @@
879879 appBar: AppBar(
880880 leading: IconButton(
881881 icon: const Icon(Icons.menu),
882
- onPressed: () => _scaffoldKey.currentState?.openDrawer(),
882
+ onPressed: () {
883
+ FocusScope.of(context).unfocus();
884
+ _scaffoldKey.currentState?.openDrawer();
885
+ },
883886 ),
884887 title: Text(
885888 activeSession?.name ?? 'PAILot',