mirror of
https://github.com/danbulant/dribbblish-dynamic-theme
synced 2026-05-26 21:41:49 +00:00
fix #111
This commit is contained in:
parent
3e41a07907
commit
a3cea3012e
2 changed files with 2 additions and 0 deletions
|
|
@ -9,6 +9,7 @@ Fixed:
|
||||||
- Missing on/off times settings for `Based on Time` dark mode (#107)
|
- Missing on/off times settings for `Based on Time` dark mode (#107)
|
||||||
- Playing icon position being wrong when listening to a playlist that is inside a folder ([#106 (comment)](https://github.com/JulienMaille/dribbblish-dynamic-theme/issues/106#issuecomment-967208507))
|
- Playing icon position being wrong when listening to a playlist that is inside a folder ([#106 (comment)](https://github.com/JulienMaille/dribbblish-dynamic-theme/issues/106#issuecomment-967208507))
|
||||||
- Alignment of right expanded cover
|
- Alignment of right expanded cover
|
||||||
|
- Slider tooltip is incorrect after a reset (#111)
|
||||||
|
|
||||||
Improved:
|
Improved:
|
||||||
- The settings UI now better represents grouped items
|
- The settings UI now better represents grouped items
|
||||||
|
|
|
||||||
|
|
@ -163,6 +163,7 @@ export default class ConfigMenu {
|
||||||
$inputElem.prop("checked", defaultVal);
|
$inputElem.prop("checked", defaultVal);
|
||||||
} else {
|
} else {
|
||||||
$inputElem.prop("value", defaultVal);
|
$inputElem.prop("value", defaultVal);
|
||||||
|
if (options.type == "slider") $inputElem.attr("tooltip", defaultVal);
|
||||||
}
|
}
|
||||||
options.onChange(defaultVal);
|
options.onChange(defaultVal);
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue