fix cut off texts when device font size is set to largest (#1786)

main
Konrad Pozniak 4 years ago committed by Alibek Omarov
parent 9e6833cfdb
commit c36fafb633
  1. 2
      app/src/main/res/layout/activity_account.xml
  2. 6
      app/src/main/res/layout/activity_compose.xml

@ -362,7 +362,7 @@
<androidx.appcompat.widget.Toolbar
android:id="@+id/accountToolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:layout_height="wrap_content"
android:layout_gravity="top"
android:background="@android:color/transparent"
app:contentInsetStartWithNavigation="0dp"

@ -9,7 +9,7 @@
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:background="@android:color/transparent">
@ -26,7 +26,7 @@
android:id="@+id/atButton"
style="@style/TuskyImageButton"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:padding="8dp"
android:text="@string/at_symbol"
@ -39,7 +39,7 @@
android:id="@+id/hashButton"
style="@style/TuskyImageButton"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:padding="8dp"
android:text="@string/hash_symbol"

Loading…
Cancel
Save