mirror of
https://github.com/M66B/FairEmail.git
synced 2025-03-15 08:29:24 +00:00
parent
6bb2f9d179
commit
813b8651b8
5 changed files with 5 additions and 5 deletions
|
@ -4,7 +4,7 @@ apply plugin: 'kotlin-android'
|
|||
apply plugin: 'de.undercouch.download'
|
||||
|
||||
def getVersionCode = { -> return 1801 }
|
||||
def getRevision = { -> "f" }
|
||||
def getRevision = { -> "c" }
|
||||
def getReleaseName = { -> return "Draconyx" }
|
||||
// https://en.wikipedia.org/wiki/List_of_dinosaur_genera
|
||||
|
||||
|
|
|
@ -192,7 +192,7 @@ public class FragmentAccounts extends FragmentBase {
|
|||
return null;
|
||||
}
|
||||
|
||||
View header = inflater.inflate(R.layout.item_group, null, false);
|
||||
View header = inflater.inflate(R.layout.item_group, parent, false);
|
||||
TextView tvCategory = header.findViewById(R.id.tvCategory);
|
||||
TextView tvDate = header.findViewById(R.id.tvDate);
|
||||
|
||||
|
|
|
@ -264,7 +264,7 @@ public class FragmentFolders extends FragmentBase {
|
|||
return null;
|
||||
}
|
||||
|
||||
View header = inflater.inflate(R.layout.item_group, null, false);
|
||||
View header = inflater.inflate(R.layout.item_group, parent, false);
|
||||
TextView tvCategory = header.findViewById(R.id.tvCategory);
|
||||
TextView tvDate = header.findViewById(R.id.tvDate);
|
||||
|
||||
|
|
|
@ -139,7 +139,7 @@ public class FragmentIdentities extends FragmentBase {
|
|||
return null;
|
||||
}
|
||||
|
||||
View header = inflater.inflate(R.layout.item_group, null, false);
|
||||
View header = inflater.inflate(R.layout.item_group, parent, false);
|
||||
TextView tvCategory = header.findViewById(R.id.tvCategory);
|
||||
TextView tvDate = header.findViewById(R.id.tvDate);
|
||||
|
||||
|
|
|
@ -771,7 +771,7 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
|
|||
if (!ch && !dh)
|
||||
return null;
|
||||
|
||||
View header = inflater.inflate(R.layout.item_group, null, false);
|
||||
View header = inflater.inflate(R.layout.item_group, parent, false);
|
||||
TextView tvCategory = header.findViewById(R.id.tvCategory);
|
||||
TextView tvDate = header.findViewById(R.id.tvDate);
|
||||
tvCategory.setVisibility(ch ? View.VISIBLE : View.GONE);
|
||||
|
|
Loading…
Add table
Reference in a new issue