mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-19 23:17:13 +00:00
18 lines
424 B
Dart
18 lines
424 B
Dart
import 'package:appflowy_editor/appflowy_editor.dart';
|
|
import 'package:hotkey_manager/hotkey_manager.dart';
|
|
|
|
import '../startup.dart';
|
|
|
|
class HotKeyTask extends LaunchTask {
|
|
const HotKeyTask();
|
|
|
|
@override
|
|
Future<void> initialize(LaunchContext context) async {
|
|
// the hotkey manager is not supported on mobile
|
|
if (PlatformExtension.isMobile) {
|
|
return;
|
|
}
|
|
await hotKeyManager.unregisterAll();
|
|
}
|
|
}
|