eval delay removed + fix for inverse trigonometric functions
This commit is contained in:
parent
538e0933ca
commit
9eb17919e5
@ -130,4 +130,9 @@
|
||||
2. Исправлена проблема с заменой 3.14... на Π
|
||||
</string>
|
||||
|
||||
<string name="c_release_notes_for_23">
|
||||
1. Исправлена проблема расчёта обратных тригонометрических функций в комплексном поле
|
||||
2. Убрана задержка вычислений
|
||||
</string>
|
||||
|
||||
</resources>
|
@ -130,4 +130,9 @@
|
||||
2. Fix for substituting 3.14... with Π constant
|
||||
</string>
|
||||
|
||||
<string name="c_release_notes_for_23">
|
||||
1. Fix for calculating inverse trigonometric functions in complex field\n
|
||||
2. Removed time delay for calculation
|
||||
</string>
|
||||
|
||||
</resources>
|
@ -50,7 +50,7 @@ public enum CalculatorModel implements CursorControl, HistoryControl<CalculatorH
|
||||
instance;
|
||||
|
||||
// millis to wait before evaluation after user edit action
|
||||
public static final int EVAL_DELAY_MILLIS = 400;
|
||||
public static final int EVAL_DELAY_MILLIS = 0;
|
||||
|
||||
@NotNull
|
||||
private CalculatorEditor editor;
|
||||
|
Loading…
Reference in New Issue
Block a user