diff options
author | Michael Weghorn <m.weghorn@posteo.de> | 2020-03-06 09:21:36 +0100 |
---|---|---|
committer | Michael Weghorn <m.weghorn@posteo.de> | 2020-03-06 16:46:02 +0100 |
commit | 01f58847bb1addb59e963fe820e01b8a191bacba (patch) | |
tree | 80e11e6063fd48ead426d9fd5a375c9ce2c568de /android/source/res/layout | |
parent | 8666ac00f89e31db8a09b3bdb004a0e275744113 (diff) |
android: Fix inverted naming for up/down in search
The naming for the directions UP and DOWN were used the wrong way
around, which was also apparent when looking at
'android/source/res/layout/toolbar_bottom.xml', where icon
'"@drawable/ic_search_direction_down"' was assigned to the
button with ID "@+id/button_search_up" (and vice versa).
Adapt the naming to avoid confusion.
Change-Id: I5cf59f1789f2c12651ce6a5638d559658d9d4deb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/90091
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'android/source/res/layout')
-rw-r--r-- | android/source/res/layout/toolbar_bottom.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/android/source/res/layout/toolbar_bottom.xml b/android/source/res/layout/toolbar_bottom.xml index 6fc85ea96290..7688dd4f01fc 100644 --- a/android/source/res/layout/toolbar_bottom.xml +++ b/android/source/res/layout/toolbar_bottom.xml @@ -438,7 +438,7 @@ android:inputType="" /> <ImageButton - android:id="@+id/button_search_up" + android:id="@+id/button_search_down" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="0.6" @@ -447,7 +447,7 @@ android:src="@drawable/ic_search_direction_down" /> <ImageButton - android:id="@+id/button_search_down" + android:id="@+id/button_search_up" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_weight="0.6" |