mirror of
https://github.com/Microsoft/calculator.git
synced 2025-07-13 00:32:52 -07:00
The programmer radix buttons were being disabled when the bit flip panel was selected, causing keyboard events to be ignored. They should actually only be hidden in bit flip mode. - Corrected programmer radix buttons to continue being enabled just hidden when the programmer calculator is in bit flip mode. - Renamed AreProgrammerRadixOperatorsEnabled property to the more appropriate AreProgrammerRadixOperatorsVisible.
This commit is contained in:
parent
1c8b642376
commit
331388c000
3 changed files with 6 additions and 6 deletions
|
@ -132,7 +132,7 @@ StandardCalculatorViewModel::StandardCalculatorViewModel()
|
|||
IsOperandEnabled = true;
|
||||
IsNegateEnabled = true;
|
||||
IsDecimalEnabled = true;
|
||||
AreProgrammerRadixOperatorsEnabled = false;
|
||||
AreProgrammerRadixOperatorsVisible = false;
|
||||
}
|
||||
|
||||
String ^ StandardCalculatorViewModel::LocalizeDisplayValue(_In_ wstring const& displayValue)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue