mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-07 09:33:39 +02:00
Small behavior improvement
This commit is contained in:
@@ -161,8 +161,7 @@ public class FragmentRule extends FragmentBase {
|
||||
}
|
||||
|
||||
private void onActionSelected(int type) {
|
||||
grpMove.setVisibility(type == EntityRule.TYPE_MOVE ? View.VISIBLE : View.GONE);
|
||||
grpAnswer.setVisibility(type == EntityRule.TYPE_ANSWER ? View.VISIBLE : View.GONE);
|
||||
showActionParameters(type);
|
||||
|
||||
new Handler().post(new Runnable() {
|
||||
@Override
|
||||
@@ -306,6 +305,8 @@ public class FragmentRule extends FragmentBase {
|
||||
spAction.setSelection(pos);
|
||||
break;
|
||||
}
|
||||
|
||||
showActionParameters(type);
|
||||
}
|
||||
|
||||
grpReady.setVisibility(View.VISIBLE);
|
||||
@@ -514,6 +515,11 @@ public class FragmentRule extends FragmentBase {
|
||||
}
|
||||
}
|
||||
|
||||
private void showActionParameters(int type) {
|
||||
grpMove.setVisibility(type == EntityRule.TYPE_MOVE ? View.VISIBLE : View.GONE);
|
||||
grpAnswer.setVisibility(type == EntityRule.TYPE_ANSWER ? View.VISIBLE : View.GONE);
|
||||
}
|
||||
|
||||
private class RefData {
|
||||
List<EntityFolder> folders;
|
||||
List<EntityIdentity> identities;
|
||||
|
||||
Reference in New Issue
Block a user