File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -201,8 +201,8 @@ def __init__(self, app):
201
201
202
202
QDockWidget {
203
203
background-color: #141923;
204
- titlebar-close-icon: url(themes/cosmic/images/dock-close.svg);
205
- titlebar-normal-icon: url(themes/cosmic/images/dock-float.svg);
204
+ titlebar-close-icon: url({PATH} themes/cosmic/images/dock-close.svg);
205
+ titlebar-normal-icon: url({PATH} themes/cosmic/images/dock-float.svg);
206
206
color: #91C3FF;
207
207
font-weight: 500;
208
208
padding: 16px;
@@ -334,7 +334,7 @@ def __init__(self, app):
334
334
}
335
335
336
336
QComboBox::down-arrow {
337
- image: url(themes/cosmic/images/dropdown-arrow.svg);
337
+ image: url({PATH} themes/cosmic/images/dropdown-arrow.svg);
338
338
}
339
339
340
340
QComboBox QAbstractItemView {
@@ -364,7 +364,7 @@ def __init__(self, app):
364
364
}
365
365
366
366
QComboBox::indicator::checked {
367
- image: url(themes/cosmic/images/dropdown-tick.svg);
367
+ image: url({PATH} themes/cosmic/images/dropdown-tick.svg);
368
368
}
369
369
370
370
QHeaderView::section {
@@ -427,7 +427,7 @@ def __init__(self, app):
427
427
background-color: #0078FF;
428
428
color: #FFFFFF;
429
429
}}
430
- """ + self .style_sheet
430
+ """ + self .style_sheet . replace ( "{PATH}" , f" { PATH } /" )
431
431
432
432
def apply_theme (self ):
433
433
super ().apply_theme ()
You can’t perform that action at this time.
0 commit comments