diff options
author | Ray-V <[email protected]> | 2021-03-22 12:56:28 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2021-03-22 13:10:44 +0900 |
commit | b1c1fd93a72134d2e450301926d0121a8f73529b (patch) | |
tree | aa9b89842487bcb8a72a5f45b9c3889d95308fee /src/numpadvbutton.cpp | |
parent | 54fd5c4cb114b87671e750430a4d0b1b67a43d58 (diff) | |
download | kvkbd-b1c1fd93a72134d2e450301926d0121a8f73529b.tar.gz kvkbd-b1c1fd93a72134d2e450301926d0121a8f73529b.zip |
Fixed algorithm for CAPS text key visualization.
Signed-off-by: Ray-V <[email protected]>
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/numpadvbutton.cpp')
-rw-r--r-- | src/numpadvbutton.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/numpadvbutton.cpp b/src/numpadvbutton.cpp index 2cb1773..b6b2a25 100644 --- a/src/numpadvbutton.cpp +++ b/src/numpadvbutton.cpp @@ -36,7 +36,7 @@ void NumpadVButton::numlockPressed(bool press) TQPushButton::setText(shiftText); } else{ - TQPushButton::setText(lowerText); + TQPushButton::setText(normalText); } } |