This commit is contained in:
Ondrej Zara 2020-03-17 22:11:55 +01:00
parent fee8ae75d0
commit 0e2a9da895
No known key found for this signature in database
GPG Key ID: B0A5751E616840C5
3 changed files with 8 additions and 11 deletions

View File

@ -11,7 +11,7 @@ cyp-song {
cyp-queue & {
> .icon {
width: 32px;
margin-right: 8px; // fixme variable
margin-right: 8px;
}
.track { display: none; }
@ -39,10 +39,7 @@ cyp-song {
padding-top: 0;
padding-bottom: 0;
> .icon {
width: 64px; // fixme variable
}
> .icon { width: 64px;}
> .icon-play { display: none; }
}
}

View File

@ -1388,9 +1388,9 @@ class Settings extends Component {
this._app.setAttribute("color", color);
}
_setYtLimit(limit) {
saveToStorage("color", color);
setYtLimit(limit);
_setYtLimit(ytLimit) {
saveToStorage("ytLimit", ytLimit);
setYtLimit(ytLimit);
}
_onComponentChange(c, isThis) {

View File

@ -70,9 +70,9 @@ class Settings extends Component {
this._app.setAttribute("color", color);
}
_setYtLimit(limit) {
saveToStorage("color", color);
conf.setYtLimit(limit);
_setYtLimit(ytLimit) {
saveToStorage("ytLimit", ytLimit);
conf.setYtLimit(ytLimit);
}
_onComponentChange(c, isThis) {