1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-01 04:35:57 +00:00

Small improvement

This commit is contained in:
M66B 2021-03-29 09:41:33 +02:00
parent c717573886
commit b80ed6e939

View file

@ -748,9 +748,10 @@ public class ActivityView extends ActivityBilling implements FragmentManager.OnB
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
int undo_timeout = prefs.getInt("undo_timeout", 5000);
if (undo_timeout == 0)
move.execute(this, args, "undo:move");
else
if (undo_timeout == 0) {
if (move != null)
move.execute(this, args, "undo:move");
} else
undo(undo_timeout, title, args, move, show);
}