- fix menu commands with semicolon separated commands

C_DoCommand only executes one command, to do full processing AddCommandString is needed.
This commit is contained in:
Christoph Oelckers 2022-07-29 08:38:34 +02:00
parent ee2c775bd8
commit 4422f9079c
1 changed files with 1 additions and 1 deletions

View File

@ -998,7 +998,7 @@ DEFINE_ACTION_FUNCTION(DOptionMenuItemCommand, DoCommand)
}
UnsafeExecutionScope scope(unsafe);
C_DoCommand(cmd);
AddCommandString(cmd);
return 0;
}