From f519fe9ea297487d95da992a0a77a2ed3aad2cb0 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Tue, 13 Jul 2021 10:22:53 +0900 Subject: Minor code rework for better consistency. Signed-off-by: Michele Calgaro --- src/VButton.cpp | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'src/VButton.cpp') diff --git a/src/VButton.cpp b/src/VButton.cpp index c0ce411..46e36ec 100644 --- a/src/VButton.cpp +++ b/src/VButton.cpp @@ -85,6 +85,12 @@ void VButton::setupTexts(Display *display) { altGrShiftText = c; } + + // caps + altGr text + capsAltGrText = altGrText.upper(); + + // caps + altGr + shift text + capsAltGrShiftText = altGrShiftText.lower(); } void VButton::shiftCapsAltGrPressed(bool shift, bool caps, bool altGrState) @@ -96,11 +102,11 @@ void VButton::shiftCapsAltGrPressed(bool shift, bool caps, bool altGrState) { if (shift) { - TQPushButton::setText(altGrShiftText.lower()); + TQPushButton::setText(capsAltGrShiftText); } else { - TQPushButton::setText(altGrText.upper()); + TQPushButton::setText(capsAltGrText); } } else if (shift) -- cgit v1.2.1