diff options
author | Michele Calgaro <[email protected]> | 2021-03-15 10:50:14 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2021-03-15 10:52:47 +0900 |
commit | 48c1053fa1e5896a10e576b9eb35634fa789cff4 (patch) | |
tree | d2686a57f2c353fce0f5352f0b295018031c19b4 /src/numpadvbutton.cpp | |
parent | 568e7737c7b589e65b9f39a5d7a3edab791177b0 (diff) | |
download | kvkbd-48c1053fa1e5896a10e576b9eb35634fa789cff4.tar.gz kvkbd-48c1053fa1e5896a10e576b9eb35634fa789cff4.zip |
Fixed behavior of caps for non-alpha characters, which was broken in
commit 00e207e.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/numpadvbutton.cpp')
-rw-r--r-- | src/numpadvbutton.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/numpadvbutton.cpp b/src/numpadvbutton.cpp index 722d90f..2cb1773 100644 --- a/src/numpadvbutton.cpp +++ b/src/numpadvbutton.cpp @@ -33,10 +33,10 @@ NumpadVButton::~NumpadVButton() void NumpadVButton::numlockPressed(bool press) { if (press==true){ - TQPushButton::setText(u); + TQPushButton::setText(shiftText); } else{ - TQPushButton::setText(l); + TQPushButton::setText(lowerText); } } |