summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2015-11-21 10:51:40 +0100
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2015-11-21 10:51:40 +0100
commit9feffdbe0d588fb8307e35737150a16d18ee8595 (patch)
treebdf0e6e581f14d4ab0065c51c368fffdd7f3201d
parent24271e34608d75acdbfe762d080cb6059d6add92 (diff)
android: underline and strikethrough commands were swapped
Change-Id: Id7157ea5fadd684dceec52f69ec9279c4107b5f1
-rw-r--r--android/source/src/java/org/libreoffice/FormattingController.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/android/source/src/java/org/libreoffice/FormattingController.java b/android/source/src/java/org/libreoffice/FormattingController.java
index 26ea085324e1..bec4ea18e640 100644
--- a/android/source/src/java/org/libreoffice/FormattingController.java
+++ b/android/source/src/java/org/libreoffice/FormattingController.java
@@ -85,10 +85,10 @@ public class FormattingController implements View.OnClickListener {
buttonId = R.id.button_italic;
break;
case Document.UNDERLINE:
- buttonId = R.id.button_strikethrough;
+ buttonId = R.id.button_underlined;
break;
case Document.STRIKEOUT:
- buttonId = R.id.button_underlined;
+ buttonId = R.id.button_strikethrough;
break;
case Document.ALIGN_LEFT:
buttonId = R.id.button_align_left;