@qooxdoo/framework 7.4.1 → 7.4.2

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qooxdoo/framework",
3
- "version": "7.4.1",
3
+ "version": "7.4.2",
4
4
  "description": "The JS Framework for Coders",
5
5
  "author": "The qooxdoo project",
6
6
  "keywords": [
@@ -58,6 +58,11 @@ qx.Mixin.define("qx.ui.core.scroll.MRoll", {
58
58
  * @param e {qx.event.type.Roll} Roll event
59
59
  */
60
60
  _onRoll(e) {
61
+ // only wheel and touch
62
+ if (e.getPointerType() == "mouse") {
63
+ return;
64
+ }
65
+
61
66
  if (this._cancelRoll && e.getMomentum()) {
62
67
  e.stopMomentum();
63
68
  this._cancelRoll = null;
@@ -226,7 +226,7 @@ qx.Mixin.define("qx.ui.treevirtual.MNode", {
226
226
  }
227
227
  if (cascade) {
228
228
  node.children.forEach(child =>
229
- this.nodeSetOpened(child, opened, cascade, true)
229
+ this._nodeSetOpenedInternal(child, opened, cascade, true)
230
230
  );
231
231
  }
232
232
  if (!cascade || !isRecursed) {
@@ -117,7 +117,7 @@
117
117
 
118
118
  $stops: $stops + $separator + "color-stop(#{$pos}, #{$color})";
119
119
 
120
- $i: $i +1;
120
+ $i: $i + 1;
121
121
  }
122
122
  }
123
123