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

View file

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

View file

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