Skip to content

Commit 30660bb

Browse files
committed
Updating theme on about us dialog for Cosmic Dusk.
1 parent 58b943d commit 30660bb

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

src/themes/cosmic/theme.py

+7
Original file line numberDiff line numberDiff line change
@@ -426,6 +426,13 @@ def __init__(self, app):
426426
color: #666666;
427427
}
428428
429+
QWidget#aboutDialog QWidget#txtversion {
430+
background-color: #141923;
431+
padding-top: 10px;
432+
padding-bottom: 10px;
433+
border-radius: 4px;
434+
}
435+
429436
.property_value {
430437
foreground-color: #0078FF;
431438
background-color: #283241;

src/windows/main_window.py

+1
Original file line numberDiff line numberDiff line change
@@ -953,6 +953,7 @@ def actionAbout_trigger(self, checked=True):
953953
"""Show about dialog"""
954954
from windows.about import About
955955
win = About()
956+
win.setObjectName("aboutDialog")
956957
# Run the dialog event loop - blocking interaction on this window during this time
957958
win.exec_()
958959

0 commit comments

Comments
 (0)