Disable auto unflag if seen specified

This commit is contained in:
M66B
2021-01-03 17:21:44 +01:00
parent c0c0ac6ff7
commit a6da98f5b7

View File

@@ -178,8 +178,11 @@ public class EntityOperation {
boolean autounflag = prefs.getBoolean("autounflag", false);
boolean reset_importance = prefs.getBoolean("reset_importance", false);
if (jargs.opt(1) != null) // rules
if (jargs.opt(1) != null) {
// rules, classify
autoread = jargs.getBoolean(1);
autounflag = false;
}
jargs.put(1, autoread);
jargs.put(3, autounflag);