浏览代码

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

UI: Fix group checkbox icons not working in Dark theme
Jim 6 年之前
父节点
当前提交
7dc9ff0575
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      UI/data/themes/Dark.qss

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

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