diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-12-23 13:30:13 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-12-23 13:30:13 +0300 |
commit | be66e6d5b5043383cff10f51bd5a9daa4b9fc113 (patch) | |
tree | 22578a6c97fedbc8126cc7fd2fbd0686be361c64 /src/gui/widgets | |
parent | 50bd5d794518e37b6d6f03134aba7fa88c687af2 (diff) | |
download | plus-be66e6d5b5043383cff10f51bd5a9daa4b9fc113.tar.gz plus-be66e6d5b5043383cff10f51bd5a9daa4b9fc113.tar.bz2 plus-be66e6d5b5043383cff10f51bd5a9daa4b9fc113.tar.xz plus-be66e6d5b5043383cff10f51bd5a9daa4b9fc113.zip |
Show long key names in browser box.
Diffstat (limited to 'src/gui/widgets')
-rw-r--r-- | src/gui/widgets/browserbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/browserbox.cpp b/src/gui/widgets/browserbox.cpp index 92892d6f4..6c44ae0d9 100644 --- a/src/gui/widgets/browserbox.cpp +++ b/src/gui/widgets/browserbox.cpp @@ -223,7 +223,7 @@ void BrowserBox::addRow(const std::string &row, const bool atTop) if (idx2 == std::string::npos) break; - const std::string str = inputManager.getKeyValueByName( + const std::string str = inputManager.getKeyValueByNameLong( tmp.substr(idx1 + 3, idx2 - idx1 - 3)); tmp.replace(idx1, idx2 - idx1 + 1, str); |