Make behavior of Shift modifier consistent
Previously, Shift+o opened the menu for the currently playing item while Shift+x copied a link to the currently selected item. Now Shift operates on the currently playing item in both cases.
This commit is contained in:
committed by
Henrik Friedrichsen
parent
f6a895e160
commit
b0d2e8f62e
@@ -376,8 +376,8 @@ impl CommandManager {
|
||||
|
||||
kb.insert("r".into(), Command::Repeat(None));
|
||||
kb.insert("z".into(), Command::Shuffle(None));
|
||||
kb.insert("x".into(), Command::Share(TargetMode::Current));
|
||||
kb.insert("Shift+x".into(), Command::Share(TargetMode::Selected));
|
||||
kb.insert("x".into(), Command::Share(TargetMode::Selected));
|
||||
kb.insert("Shift+x".into(), Command::Share(TargetMode::Current));
|
||||
|
||||
kb.insert("F1".into(), Command::Focus("queue".into()));
|
||||
kb.insert("F2".into(), Command::Focus("search".into()));
|
||||
|
||||
Reference in New Issue
Block a user