Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes for 3.2.55 (tier 3) #279

Merged
merged 6 commits into from
Apr 19, 2021
Prev Previous commit
InputDialog: the cursor position is retained while dragging the slider.
  • Loading branch information
virxkane committed Apr 19, 2021
commit 6150c31f4efab47b4053ab78b96bd9621873aee5
2 changes: 1 addition & 1 deletion android/src/org/coolreader/crengine/InputDialog.java
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public void onProgressChanged(SeekBar seekBar, int progress,
String value = String.valueOf(progress + InputDialog.this.mMinValue);
try {
if (inputHandler.validate(value))
mEditText.setText(value);
mEditText.setTextKeepState(value);
} catch (Exception e) {
// ignore
}
Expand Down