mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-22 06:01:12 +00:00
Indent user folders only
This commit is contained in:
parent
43c1c797d3
commit
4e7b60bd32
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@ public class AdapterFolder extends RecyclerView.Adapter<AdapterFolder.ViewHolder
|
|||
|
||||
if (account > 0) {
|
||||
ViewGroup.LayoutParams lp = vwLevel.getLayoutParams();
|
||||
lp.width = folder.level * dp12;
|
||||
lp.width = (EntityFolder.USER.equals(folder.type) ? folder.level : 0) * dp12;
|
||||
vwLevel.setLayoutParams(lp);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue