mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-08 01:22:25 +02:00
qrc references should only use a single slash
This commit is contained in:
parent
94a0db04f9
commit
c737283935
2 changed files with 8 additions and 8 deletions
|
@ -63,17 +63,17 @@ QPushButton#cancelButton {
|
|||
}
|
||||
|
||||
#backButton {
|
||||
background-image: url(qrc://icons/backButton.svg);
|
||||
background-image: url(qrc:/icons/backButton.svg);
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
#forwardButton {
|
||||
background-image: url(qrc://icons/forwardButton.svg);
|
||||
background-image: url(qrc:/icons/forwardButton.svg);
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
#toParentButton {
|
||||
background-image: url(qrc://icons/toParentButton.svg);
|
||||
background-image: url(qrc:/icons/toParentButton.svg);
|
||||
border-radius: 0px;
|
||||
}
|
||||
|
||||
|
|
|
@ -21,7 +21,7 @@ QLineEdit {
|
|||
}
|
||||
|
||||
QPushButton#searchButton {
|
||||
background: url(qrc://styles/search.svg);
|
||||
background: url(qrc:/styles/search.svg);
|
||||
background-repeat: none;
|
||||
background-position: left center;
|
||||
background-origin: content;
|
||||
|
@ -33,7 +33,7 @@ QPushButton#searchButton {
|
|||
}
|
||||
|
||||
QPushButton#revealLogButton {
|
||||
background: url(qrc://styles/txt-file.svg);
|
||||
background: url(qrc:/styles/txt-file.svg);
|
||||
background-repeat: none;
|
||||
background-position: left center;
|
||||
background-origin: content;
|
||||
|
@ -50,9 +50,9 @@ QCheckBox {
|
|||
}
|
||||
|
||||
QCheckBox::indicator:unchecked {
|
||||
image: url(qrc://styles/unchecked.svg);
|
||||
image: url(qrc:/styles/unchecked.svg);
|
||||
}
|
||||
|
||||
QCheckBox::indicator:checked {
|
||||
image: url(qrc://styles/checked.svg);
|
||||
}
|
||||
image: url(qrc:/styles/checked.svg);
|
||||
}
|
Loading…
Reference in a new issue