New Sieve GUI improvements #80

This commit is contained in:
the-djmaze 2024-09-23 03:54:31 +02:00
parent ffc2da33f8
commit 0bd3804265
48 changed files with 181 additions and 144 deletions

View file

@ -43,11 +43,12 @@ class FlagCommand extends ActionCommand
if (args[0] instanceof GrammarQuotedString) {
this._variablename = args[0];
}
if (args[1] instanceof GrammarString) {
this.list_of_flags = args[1];
}
} else if (args[0] instanceof GrammarString) {
args[0] = args[1];
}
if (args[0] instanceof GrammarStringList) {
this.list_of_flags = args[0];
} else if (args[0]) {
this.list_of_flags.push(args[0]);
}
}
}