diff options
author | Ken Moore <moorekou@gmail.com> | 2015-12-11 11:03:31 -0500 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2015-12-11 11:03:31 -0500 |
commit | 1781aceb1edde7001c8b1333ecf6684d444431ab (patch) | |
tree | ad0ad8788d662ea1033c915fcf3716e48ca149cb /lumina-config/mainUI.cpp | |
parent | Add the size hints to libLumina X11, and enable the usage of it within teh WM. (diff) | |
download | lumina-1781aceb1edde7001c8b1333ecf6684d444431ab.tar.gz lumina-1781aceb1edde7001c8b1333ecf6684d444431ab.tar.bz2 lumina-1781aceb1edde7001c8b1333ecf6684d444431ab.zip |
Fix a bug where the "+" in the Qt display was not getting replaced with a space.
Diffstat (limited to 'lumina-config/mainUI.cpp')
-rw-r--r-- | lumina-config/mainUI.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lumina-config/mainUI.cpp b/lumina-config/mainUI.cpp index 6bcaa1b6..50a5ce64 100644 --- a/lumina-config/mainUI.cpp +++ b/lumina-config/mainUI.cpp @@ -339,6 +339,7 @@ QString MainUI::dispToFluxKeys(QString in){ in.replace("Ins","Insert"); in.replace("Volume Up", "XF86AudioRaiseVolume"); //multimedia key in.replace("Volume Down", "XF86AudioLowerVolume"); //multimedia key + in.replace("+"," "); return in; } |