This commit is contained in:
Send_Nukez 2021-11-17 03:46:55 +01:00
parent 3e41a07907
commit a3cea3012e
2 changed files with 2 additions and 0 deletions

View file

@ -9,6 +9,7 @@ Fixed:
- 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))
- Alignment of right expanded cover
- Slider tooltip is incorrect after a reset (#111)
Improved:
- The settings UI now better represents grouped items

View file

@ -163,6 +163,7 @@ export default class ConfigMenu {
$inputElem.prop("checked", defaultVal);
} else {
$inputElem.prop("value", defaultVal);
if (options.type == "slider") $inputElem.attr("tooltip", defaultVal);
}
options.onChange(defaultVal);
});