mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-01 04:35:57 +00:00
Small improvement
This commit is contained in:
parent
c717573886
commit
b80ed6e939
1 changed files with 4 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue