mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-04 06:20:26 +00:00
Changed accoun/inbox division
This commit is contained in:
parent
ebca5f95b6
commit
0eae3a9fe9
1 changed files with 2 additions and 2 deletions
|
@ -164,11 +164,11 @@ public class AdapterAccount extends RecyclerView.Adapter<AdapterAccount.ViewHold
|
|||
int left;
|
||||
int right;
|
||||
if (view.getLayoutDirection() == View.LAYOUT_DIRECTION_LTR) {
|
||||
left = view.getWidth() - view.getWidth() / 3;
|
||||
left = view.getWidth() - view.getWidth() / 4;
|
||||
right = view.getWidth();
|
||||
} else {
|
||||
left = 0;
|
||||
right = view.getWidth() / 3;
|
||||
right = view.getWidth() / 4;
|
||||
}
|
||||
Rect rect = new Rect(
|
||||
left,
|
||||
|
|
Loading…
Reference in a new issue