iobroker.mywebui 1.37.89 → 1.37.90

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/io-package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "common": {
3
3
  "name": "mywebui",
4
- "version": "1.37.89",
4
+ "version": "1.37.90",
5
5
  "titleLang": {
6
6
  "en": "mywebui",
7
7
  "de": "mywebui",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "iobroker.mywebui",
3
- "version": "1.37.89",
3
+ "version": "1.37.90",
4
4
  "description": "ioBroker mywebui - Custom edited mywebui by gokturk413",
5
5
  "type": "module",
6
6
  "main": "dist/backend/main.js",
@@ -1104,7 +1104,7 @@ export class IobrokerWebuiAppShell extends BaseCustomWebComponentConstructorAppe
1104
1104
  // Apply to all open screen editors
1105
1105
  for (const ed of this._dock.querySelectorAll('iobroker-webui-screen-editor')) {
1106
1106
  const canvas = ed.documentContainer?.designerView?.designerCanvas;
1107
- if (canvas) canvas.pauseAnimations = !value;
1107
+ if (canvas) canvas.pauseAnimations = value;
1108
1108
  }
1109
1109
  }
1110
1110
 
@@ -630,7 +630,7 @@ export class IobrokerWebuiScreenEditor extends BaseCustomWebComponentConstructor
630
630
  });
631
631
  // Apply current editor animations state (set by the checkbox in Animations/Effects panels)
632
632
  const canvas = this.documentContainer.designerView.designerCanvas;
633
- if (canvas) canvas.pauseAnimations = !window.appShell._editorAnimationsEnabled;
633
+ if (canvas) canvas.pauseAnimations = window.appShell._editorAnimationsEnabled;
634
634
  }
635
635
  _controlDefaultWidth = '800px';
636
636
  _controlDefaultHeight = '600px';