Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/keyboard.cc')
-rw-r--r--src/client/keyboard.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/keyboard.cc b/src/client/keyboard.cc
index d8b14b3..5870e06 100644
--- a/src/client/keyboard.cc
+++ b/src/client/keyboard.cc
@@ -329,7 +329,7 @@ Key *Keyboard::find(unsigned int keysym)
void Keyboard::bind(std::string const &name, const std::string str)
{
- Key *key = find(aux::lowercase(name));
+ Key *key = find(name);
if (key) {
key->assign(Key::None, str.c_str());
} else {