Skip to content
Snippets Groups Projects
Commit e60020fc authored by tigregalis's avatar tigregalis
Browse files

fix linux redo

parent 01de3ad9
No related branches found
No related tags found
No related merge requests found
......@@ -534,9 +534,9 @@ pub fn cosmic_edit_bevy_events(
}
// redo
#[cfg(target_os = "macos")]
#[cfg(not(target_os = "windows"))]
let requested_redo = command && shift && keys.just_pressed(KeyCode::Z);
#[cfg(not(target_os = "macos"))]
#[cfg(target_os = "windows")]
let requested_redo = command && keys.just_pressed(KeyCode::Y);
if !cosmic_edit.readonly && requested_redo {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment