@magic-xpa/engine 4.801.0-dev481.305 → 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.
- package/esm2020/src/CurrentClientVersion.mjs +2 -2
- package/esm2020/src/event/EventsManager.mjs +4 -2
- package/fesm2015/magic-xpa-engine.mjs +4 -2
- package/fesm2015/magic-xpa-engine.mjs.map +1 -1
- package/fesm2020/magic-xpa-engine.mjs +4 -2
- package/fesm2020/magic-xpa-engine.mjs.map +1 -1
- package/package.json +4 -4
|
@@ -27947,7 +27947,9 @@ class EventsManager {
|
|
|
27947
27947
|
return false;
|
|
27948
27948
|
let canGotoCtrl = true;
|
|
27949
27949
|
let currTask = ctrl.getForm().getTask();
|
|
27950
|
-
|
|
27950
|
+
let lastTask = LastFocusedManager.Instance.getLastFocusedTask();
|
|
27951
|
+
if (!currTask.IsInteractive || (lastTask != null && lastTask.getLastParkedCtrl() != null &&
|
|
27952
|
+
lastTask.cancelWasRaised()))
|
|
27951
27953
|
return false;
|
|
27952
27954
|
if (ctrl.Type === MgControlType.CTRL_TYPE_IMAGE && !ctrl.IsRepeatable)
|
|
27953
27955
|
canGotoCtrl = false;
|
|
@@ -31091,7 +31093,7 @@ class CommandsTable {
|
|
|
31091
31093
|
}
|
|
31092
31094
|
}
|
|
31093
31095
|
|
|
31094
|
-
let CurrentClientVersion = '4.801.0-dev481.
|
|
31096
|
+
let CurrentClientVersion = '4.801.0-dev481.306';
|
|
31095
31097
|
|
|
31096
31098
|
class ClientManager {
|
|
31097
31099
|
constructor() {
|