mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2025-03-23 14:29:02 +03:00
Merge branch 'develop' into feature/bma/fix_clear_cache
This commit is contained in:
commit
277fc4bf61
4 changed files with 10 additions and 1 deletions
|
@ -9,6 +9,7 @@ Improvements 🙌:
|
||||||
|
|
||||||
Bugfix 🐛:
|
Bugfix 🐛:
|
||||||
- Fix clear cache issue: sometimes, after a clear cache, there is still a token, so the init sync service is not started.
|
- Fix clear cache issue: sometimes, after a clear cache, there is still a token, so the init sync service is not started.
|
||||||
|
- Sidebar too large in horizontal orientation or tablets (#475)
|
||||||
|
|
||||||
Translations 🗣:
|
Translations 🗣:
|
||||||
-
|
-
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
|
|
||||||
<androidx.fragment.app.FragmentContainerView
|
<androidx.fragment.app.FragmentContainerView
|
||||||
android:id="@+id/homeDrawerFragmentContainer"
|
android:id="@+id/homeDrawerFragmentContainer"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="@dimen/navigation_drawer_max_width"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:layout_gravity="start" />
|
android:layout_gravity="start" />
|
||||||
|
|
||||||
|
|
5
vector/src/main/res/values-sw600dp/dimens.xml
Normal file
5
vector/src/main/res/values-sw600dp/dimens.xml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<!-- Navigation Drawer -->
|
||||||
|
<dimen name="navigation_drawer_max_width">400dp</dimen>
|
||||||
|
</resources>
|
|
@ -33,4 +33,7 @@
|
||||||
<!-- Max width for some buttons -->
|
<!-- Max width for some buttons -->
|
||||||
<dimen name="button_max_width">280dp</dimen>
|
<dimen name="button_max_width">280dp</dimen>
|
||||||
|
|
||||||
|
<!-- Navigation Drawer -->
|
||||||
|
<dimen name="navigation_drawer_max_width">320dp</dimen>
|
||||||
|
|
||||||
</resources>
|
</resources>
|
Loading…
Add table
Reference in a new issue