fyn 3.1.0 → 3.1.1
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/dist/fyn.mjs +5 -1
- package/package.json +1 -1
package/dist/fyn.mjs
CHANGED
|
@@ -10059,7 +10059,11 @@ var VisualLogger = class VisualLogger {
|
|
|
10059
10059
|
if (this._items.indexOf(name) >= 0) return this;
|
|
10060
10060
|
this._getItemKeys().forEach((k) => {
|
|
10061
10061
|
const itemOpt = this._itemOptions[k];
|
|
10062
|
-
if (itemOpt._spinning)
|
|
10062
|
+
if (itemOpt._spinning) {
|
|
10063
|
+
itemOpt._spinning = SPIN_STARTED;
|
|
10064
|
+
itemOpt.spinIx = 0;
|
|
10065
|
+
this._lines[this._items.indexOf(itemOpt.name)] = this._renderLine(itemOpt);
|
|
10066
|
+
}
|
|
10063
10067
|
});
|
|
10064
10068
|
const itemOpt = {
|
|
10065
10069
|
spinInterval: DEFAULT_SPINNER_INTERVAL,
|