1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-10-30 23:22:43 +00:00
serenity/Userland/Applications/Calculator
ronak69 75183402fd Calculator: Finish operation-in-progress only on new binary operations
Because of this the unary operations got applied to the result of the
operation-in-progress instead of the current argument as shown here:

    `16 + 9 <sqrt> =`
        Previous output: `sqrt(16 + 9)` = `5`
        Expected output: `16 + sqrt(9)` = `19`
2024-01-12 16:03:09 -07:00
..
Calculator.cpp Calculator: Finish operation-in-progress only on new binary operations 2024-01-12 16:03:09 -07:00
Calculator.h Calculator: Support chaining and repeating operations 2022-12-31 00:07:13 +01:00
CalculatorWidget.cpp Calculator: Allow system shortcuts 2024-01-11 19:00:46 +00:00
CalculatorWidget.h Calculator: Convert DeprecatedString to String 2023-11-17 17:17:00 +00:00
CalculatorWindow.gml Calculator: Make the equals button non-focusable 2024-01-12 12:53:12 +00:00
CMakeLists.txt Calculator: Add Manual link to the help-context-menu 2023-11-08 16:26:23 +00:00
Keypad.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30
Keypad.h Calculator: Convert DeprecatedString to String 2023-11-17 17:17:00 +00:00
main.cpp Everywhere: Rename {Deprecated => Byte}String 2023-12-17 18:25:10 +03:30