mirror of
https://github.com/rustdesk/rustdesk.git
synced 2026-04-08 10:21:29 +03:00
add controlRight to file manager
This commit is contained in:
@@ -1126,8 +1126,8 @@ class _FileManagerViewState extends State<FileManagerView> {
|
|||||||
|
|
||||||
void _onSelectedChanged(SelectedItems selectedItems, List<Entry> entries,
|
void _onSelectedChanged(SelectedItems selectedItems, List<Entry> entries,
|
||||||
Entry entry, bool isLocal) {
|
Entry entry, bool isLocal) {
|
||||||
final isCtrlDown = RawKeyboard.instance.keysPressed
|
final isCtrlDown = RawKeyboard.instance.keysPressed.contains(LogicalKeyboardKey.controlLeft) ||
|
||||||
.contains(LogicalKeyboardKey.controlLeft);
|
RawKeyboard.instance.keysPressed.contains(LogicalKeyboardKey.controlRight);
|
||||||
final isShiftDown =
|
final isShiftDown =
|
||||||
RawKeyboard.instance.keysPressed.contains(LogicalKeyboardKey.shiftLeft) ||
|
RawKeyboard.instance.keysPressed.contains(LogicalKeyboardKey.shiftLeft) ||
|
||||||
RawKeyboard.instance.keysPressed.contains(LogicalKeyboardKey.shiftRight);
|
RawKeyboard.instance.keysPressed.contains(LogicalKeyboardKey.shiftRight);
|
||||||
|
|||||||
Reference in New Issue
Block a user