| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1 +1 @@ | |||
| 1 | - 20260705081251 | ||
| 1 | + 20260822211137 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1 +1 @@ | |||
| 1 | - 20260705081251 | ||
| 1 | + 20260822211137 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -103,13 +103,13 @@ public boolean equals(Object o) { | |||
| 103 | 103 | ||
| 104 | 104 | /** | |
| 105 | 105 | * Returns a string that contains the values of this Tuple4f. The form is | |
| 106 | - * (x,y,z,w). | ||
| 106 | + * {x,y,z,w}. | ||
| 107 | 107 | * | |
| 108 | 108 | * @return the String representation | |
| 109 | 109 | */ | |
| 110 | 110 | @Override | |
| 111 | 111 | public String toString() { | |
| 112 | - return "(" + x + ", " + y + ", " + z + ", " + w + ")"; | ||
| 112 | + return "{" + x + ", " + y + ", " + z + ", " + w + "}"; | ||
| 113 | 113 | } | |
| 114 | 114 | ||
| 115 | 115 | @Override | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -267,7 +267,7 @@ void setJQuerySliderAndEvents() { | |||
| 267 | 267 | * range: false, | |
| 268 | 268 | * min: me.min, | |
| 269 | 269 | * max: me.max, | |
| 270 | - * value: me.val, | ||
| 270 | + * value: me.jsval, | ||
| 271 | 271 | * disabled: me.disabled, | |
| 272 | 272 | * inverted: me.isInverted, | |
| 273 | 273 | * change: function(jqevent, handle) { | |
@@ -341,7 +341,10 @@ public void setEnabled(boolean b) { | |||
| 341 | 341 | * @param isNew | |
| 342 | 342 | */ | |
| 343 | 343 | private void setup(boolean isNew) { | |
| 344 | - | ||
| 344 | + if (!sliderInitialized()) { | ||
| 345 | + setJQuerySliderAndEvents(); | ||
| 346 | + isNew=true; | ||
| 347 | + } | ||
| 345 | 348 | sliderTrack = DOMNode.lastChild(domNode); | |
| 346 | 349 | sliderHandle = DOMNode.firstChild(sliderTrack); | |
| 347 | 350 | // mark the handle and track with the "swingjs-ui" class | |
| Back | FazBrowse Home | New Git URL |
0 commit comments