Kaydet (Commit) 9feffdbe authored tarafından Christian Lohmaier's avatar Christian Lohmaier

android: underline and strikethrough commands were swapped

Change-Id: Id7157ea5fadd684dceec52f69ec9279c4107b5f1
üst 24271e34
...@@ -85,10 +85,10 @@ public class FormattingController implements View.OnClickListener { ...@@ -85,10 +85,10 @@ public class FormattingController implements View.OnClickListener {
buttonId = R.id.button_italic; buttonId = R.id.button_italic;
break; break;
case Document.UNDERLINE: case Document.UNDERLINE:
buttonId = R.id.button_strikethrough; buttonId = R.id.button_underlined;
break; break;
case Document.STRIKEOUT: case Document.STRIKEOUT:
buttonId = R.id.button_underlined; buttonId = R.id.button_strikethrough;
break; break;
case Document.ALIGN_LEFT: case Document.ALIGN_LEFT:
buttonId = R.id.button_align_left; buttonId = R.id.button_align_left;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment