qrc references should only use a single slash

This commit is contained in:
Stephen Birarda 2014-03-06 10:45:47 -08:00
parent 94a0db04f9
commit c737283935
2 changed files with 8 additions and 8 deletions

View file

@ -63,17 +63,17 @@ QPushButton#cancelButton {
} }
#backButton { #backButton {
background-image: url(qrc://icons/backButton.svg); background-image: url(qrc:/icons/backButton.svg);
border-radius: 0px; border-radius: 0px;
} }
#forwardButton { #forwardButton {
background-image: url(qrc://icons/forwardButton.svg); background-image: url(qrc:/icons/forwardButton.svg);
border-radius: 0px; border-radius: 0px;
} }
#toParentButton { #toParentButton {
background-image: url(qrc://icons/toParentButton.svg); background-image: url(qrc:/icons/toParentButton.svg);
border-radius: 0px; border-radius: 0px;
} }

View file

@ -21,7 +21,7 @@ QLineEdit {
} }
QPushButton#searchButton { QPushButton#searchButton {
background: url(qrc://styles/search.svg); background: url(qrc:/styles/search.svg);
background-repeat: none; background-repeat: none;
background-position: left center; background-position: left center;
background-origin: content; background-origin: content;
@ -33,7 +33,7 @@ QPushButton#searchButton {
} }
QPushButton#revealLogButton { QPushButton#revealLogButton {
background: url(qrc://styles/txt-file.svg); background: url(qrc:/styles/txt-file.svg);
background-repeat: none; background-repeat: none;
background-position: left center; background-position: left center;
background-origin: content; background-origin: content;
@ -50,9 +50,9 @@ QCheckBox {
} }
QCheckBox::indicator:unchecked { QCheckBox::indicator:unchecked {
image: url(qrc://styles/unchecked.svg); image: url(qrc:/styles/unchecked.svg);
} }
QCheckBox::indicator:checked { QCheckBox::indicator:checked {
image: url(qrc://styles/checked.svg); image: url(qrc:/styles/checked.svg);
} }