mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bustage fix for bug 442419: allow custom max for progressmeter, take 2
This commit is contained in:
parent
f21a7f01e9
commit
02c0fa320f
@ -46,7 +46,7 @@
|
||||
</property>
|
||||
<property name="max"
|
||||
onget="return this.getAttribute('max') || '100';"
|
||||
onset="this.setAttribute('max', isNaN(val) ? 100 : Math.max(val, 1);
|
||||
onset="this.setAttribute('max', isNaN(val) ? 100 : Math.max(val, 1));
|
||||
this.value = this.value;
|
||||
return val;" />
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user