diff options
author | LuK1337 <priv.luk@gmail.com> | 2023-02-14 16:12:43 +0100 |
---|---|---|
committer | Ćukasz Patron <priv.luk@gmail.com> | 2023-02-15 13:43:10 +0100 |
commit | 42bc070a0f605d51a292b5cfdd27ab01f13166ca (patch) | |
tree | 94d774fa17b9a3fefa3538c24ae2748e47abef17 | |
parent | dd63b4a02005df353884eff6ac2ac8fc87e60889 (diff) |
Aperture: Set SecondaryTopBarButton height to wrap_content
Fixes multiline button text.
Change-Id: I19dac34c5ff937bcf5b0a89b0daa25ef513024ef
-rw-r--r-- | app/src/main/res/values/themes.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml index 5fbb5fe..24072b4 100644 --- a/app/src/main/res/values/themes.xml +++ b/app/src/main/res/values/themes.xml @@ -67,7 +67,7 @@ <!-- Secondary top bar icons theme --> <style name="Theme.Aperture.Camera.SecondaryTopBarButton" parent="Theme.Aperture.Camera.SecondaryBarButton"> <item name="android:layout_width">108dp</item> - <item name="android:layout_height">72dp</item> + <item name="android:layout_height">wrap_content</item> <item name="android:paddingHorizontal">0dp</item> <item name="android:textStyle">bold</item> <item name="android:typeface">monospace</item> |