mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-25 20:48:52 +03:00
Simplify source URL construction
Co-authored-by: DeepBlueV7.X <nicolas.werner@hotmail.de>
This commit is contained in:
parent
7671927fa4
commit
8f7ca298bc
1 changed files with 1 additions and 6 deletions
|
@ -19,12 +19,7 @@ AbstractButton {
|
||||||
|
|
||||||
// Workaround, can't get icon.source working for now...
|
// Workaround, can't get icon.source working for now...
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
source: {
|
source: "image://colorimage/" + image + "?" + ((button.hovered && changeColorOnHover) ? highlightColor : buttonTextColor)
|
||||||
var src = "image://colorimage/" + image;
|
|
||||||
if (changeColorOnHover)
|
|
||||||
src += "?" + (button.hovered ? highlightColor : buttonTextColor);
|
|
||||||
return src;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
MouseArea {
|
MouseArea {
|
||||||
|
|
Loading…
Reference in a new issue