1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 18:07:34 +00:00

Calculator: Fix which digits get animated when pressing keyboard keys

Previously every digit press would appear like "0" was pressed on the
keypad.
This commit is contained in:
Karol Baraniecki 2022-12-26 17:07:00 +01:00 committed by Andreas Kling
parent c65df44eee
commit ef9fd6c286
3 changed files with 4 additions and 4 deletions

View file

@ -21,7 +21,7 @@ public:
Keypad() = default;
~Keypad() = default;
unsigned type_digit(int digit);
void type_digit(int digit);
void type_decimal_point();
void type_backspace();