bindings: bind pause to 'p' and 'P' to display mode toggle

This commit is contained in:
Andrzej Rybczak
2012-09-05 23:48:56 +02:00
parent c34bcee12b
commit 061fb9e60d

View File

@@ -323,7 +323,7 @@ void BindingsConfiguration::generateDefault()
bind(k, aShowServerInfo);
if (notBound(k = stringToKey("s")))
bind(k, aStop);
if (notBound(k = stringToKey("P")))
if (notBound(k = stringToKey("p")))
bind(k, aPause);
if (notBound(k = stringToKey(">")))
bind(k, aNextSong);
@@ -464,7 +464,7 @@ void BindingsConfiguration::generateDefault()
bind(k, aJumpToTagEditor);
if (notBound(k = stringToKey("U")))
bind(k, aToggleAutoCenter);
if (notBound(k = stringToKey("p")))
if (notBound(k = stringToKey("P")))
bind(k, aToggleDisplayMode);
if (notBound(k = stringToKey("\\")))
bind(k, aToggleInterface);