diff options
author | Andrzej Rybczak <electricityispower@gmail.com> | 2012-09-05 23:48:56 +0200 |
---|---|---|
committer | Andrzej Rybczak <electricityispower@gmail.com> | 2012-09-05 23:48:56 +0200 |
commit | 061fb9e60d0bb4929d4a9f80e68870f671bb06cc (patch) | |
tree | 24fe486bf2510696fbd5b3760eddc9634279634b | |
parent | c34bcee12b78fda9fd35c141803e41c519f832cb (diff) |
bindings: bind pause to 'p' and 'P' to display mode toggle
-rw-r--r-- | src/bindings.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bindings.cpp b/src/bindings.cpp index b44b4896..0fda0436 100644 --- a/src/bindings.cpp +++ b/src/bindings.cpp @@ -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); |