Small improvement

This commit is contained in:
M66B 2022-09-16 17:56:18 +02:00
parent 64c6868d1c
commit 86b4f4ae80
1 changed files with 4 additions and 1 deletions

View File

@ -671,7 +671,10 @@ public class FragmentOptionsBehavior extends FragmentBase implements SharedPrefe
if ((left != null && EntityMessage.SWIPE_ACTION_HIDE.equals(left.id)) ||
(right != null && EntityMessage.SWIPE_ACTION_HIDE.equals(right.id)))
prefs.edit().putBoolean("button_hide", true).apply();
prefs.edit()
.putBoolean("message_tools", true)
.putBoolean("button_hide", true)
.apply();
Bundle args = new Bundle();
args.putLong("left", left == null ? 0 : left.id);