@magic-xpa/engine 4.801.0-dev481.302 → 4.801.0-dev481.306

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -27201,7 +27201,9 @@ class EventsManager {
27201
27201
  return false;
27202
27202
  let canGotoCtrl = true;
27203
27203
  let currTask = ctrl.getForm().getTask();
27204
- if (!currTask.IsInteractive)
27204
+ let lastTask = LastFocusedManager.Instance.getLastFocusedTask();
27205
+ if (!currTask.IsInteractive || (lastTask != null && lastTask.getLastParkedCtrl() != null &&
27206
+ lastTask.cancelWasRaised()))
27205
27207
  return false;
27206
27208
  if (ctrl.Type === MgControlType.CTRL_TYPE_IMAGE && !ctrl.IsRepeatable)
27207
27209
  canGotoCtrl = false;
@@ -30247,7 +30249,7 @@ class CommandsTable {
30247
30249
  }
30248
30250
  }
30249
30251
 
30250
- let CurrentClientVersion = '4.801.0-dev481.302';
30252
+ let CurrentClientVersion = '4.801.0-dev481.306';
30251
30253
 
30252
30254
  class ClientManager {
30253
30255
  constructor() {