From c737283935990cce9199b3a6ba64fc907ac9c8d5 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Thu, 6 Mar 2014 10:45:47 -0800 Subject: [PATCH] qrc references should only use a single slash --- interface/resources/styles/import_dialog.qss | 6 +++--- interface/resources/styles/log_dialog.qss | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/interface/resources/styles/import_dialog.qss b/interface/resources/styles/import_dialog.qss index eaf87b5d4e..32630fe0e0 100644 --- a/interface/resources/styles/import_dialog.qss +++ b/interface/resources/styles/import_dialog.qss @@ -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; } diff --git a/interface/resources/styles/log_dialog.qss b/interface/resources/styles/log_dialog.qss index d3ed5d44fb..73582a8518 100644 --- a/interface/resources/styles/log_dialog.qss +++ b/interface/resources/styles/log_dialog.qss @@ -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); +} \ No newline at end of file