@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.
- 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
|
@@ -27201,7 +27201,9 @@ class EventsManager {
|
|
|
27201
27201
|
return false;
|
|
27202
27202
|
let canGotoCtrl = true;
|
|
27203
27203
|
let currTask = ctrl.getForm().getTask();
|
|
27204
|
-
|
|
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.
|
|
30252
|
+
let CurrentClientVersion = '4.801.0-dev481.306';
|
|
30251
30253
|
|
|
30252
30254
|
class ClientManager {
|
|
30253
30255
|
constructor() {
|