feat: allow user to bulk resize and move regions

This commit is contained in:
Xiaohan-Tian
2026-05-04 18:15:34 -07:00
parent 6d952b5b0b
commit 01a3f886d6
7 changed files with 541 additions and 22 deletions
+2 -2
View File
@@ -588,8 +588,8 @@ export class KGCore {
* Execute a command through the command history system
* @param command The command to execute
*/
public executeCommand(command: KGCommand): void {
this.commandHistory.executeCommand(command);
public executeCommand(command: KGCommand, options?: { rethrow?: boolean }): void {
this.commandHistory.executeCommand(command, options);
}
/**