From 7f148f9c34d9db2d98cd752e7085fea5cfd925df Mon Sep 17 00:00:00 2001 From: Andrzej Rybczak Date: Fri, 13 Nov 2015 03:26:49 +0100 Subject: [PATCH] bindings: make run_action take precedence over play_item --- NEWS | 1 + doc/bindings | 4 ++-- src/bindings.cpp | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index b613fdc4..54680230 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,6 @@ ncmpcpp-0.7_beta2 (????-??-??) * Playlist sorting dialog now contains 'Album artist' option. +* Default keybindings were corrected to allow tag edition in the right column of tag editor. ncmpcpp-0.6.8 (2015-11-11) * Application is now compatible with MPD >= 0.20. diff --git a/doc/bindings b/doc/bindings index cf22f41b..f586f0b3 100644 --- a/doc/bindings +++ b/doc/bindings @@ -199,10 +199,10 @@ # toggle_output # #def_key "enter" -# play_item +# run_action # #def_key "enter" -# run_action +# play_item # #def_key "space" # add_item_to_playlist diff --git a/src/bindings.cpp b/src/bindings.cpp index f5249e23..c2c0643f 100644 --- a/src/bindings.cpp +++ b/src/bindings.cpp @@ -499,8 +499,8 @@ void BindingsConfiguration::generateDefaults() { bind(k, Actions::Type::EnterDirectory); bind(k, Actions::Type::ToggleOutput); - bind(k, Actions::Type::PlayItem); bind(k, Actions::Type::RunAction); + bind(k, Actions::Type::PlayItem); } if (notBound(k = stringToKey("space"))) {