🐛 Bug fixes on post editor

This commit is contained in:
2025-03-10 21:02:18 +08:00
parent 9d4ce6ca8c
commit 813679b161
2 changed files with 5 additions and 7 deletions

View File

@ -164,7 +164,7 @@ class _PostEditorScreenState extends State<PostEditorScreen>
});
hotKeyManager.register(_saveDraftHotKey, keyDownHandler: (_) async {
if (mounted) {
_writeController.sendPost(context);
_writeController.sendPost(context, saveAsDraft: true);
}
});
}