Sfoglia il codice sorgente

Merge pull request #1843 from cg2121/fix-group-icons

UI: Fix group checkbox icons not working in Dark theme
Jim 6 anni fa
parent
commit
7dc9ff0575
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      UI/data/themes/Dark.qss

+ 2 - 2
UI/data/themes/Dark.qss

@@ -637,11 +637,11 @@ SourceTreeSubItemCheckBox::indicator {
 }
 }
 
 
 SourceTreeSubItemCheckBox::indicator:checked {
 SourceTreeSubItemCheckBox::indicator:checked {
-    image: url(./Dark/expand.png);
+    image: url(./Dark/expand.svg);
 }
 }
 
 
 SourceTreeSubItemCheckBox::indicator:unchecked {
 SourceTreeSubItemCheckBox::indicator:unchecked {
-    image: url(./Dark/collapse.png);
+    image: url(./Dark/down.svg);
 }
 }