added icons
This commit is contained in:
@@ -71,7 +71,7 @@ class MainWindow(QMainWindow):
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
|
||||
# self.setWindowFlag(QtCore.Qt.FramelessWindowHint)
|
||||
self.setWindowFlag(QtCore.Qt.FramelessWindowHint)
|
||||
self.setWindowFlag(QtCore.Qt.WindowStaysOnTopHint)
|
||||
self.setAttribute(QtCore.Qt.WA_TranslucentBackground)
|
||||
|
||||
@@ -96,7 +96,12 @@ class MainWindow(QMainWindow):
|
||||
|
||||
def start_app():
|
||||
app = QApplication(sys.argv)
|
||||
qdarktheme.setup_theme()
|
||||
qss = """QToolTip {
|
||||
background-color: black;
|
||||
color: white;
|
||||
border: black solid 1px
|
||||
}"""
|
||||
qdarktheme.setup_theme(additional_qss=qss, custom_colors={"primary": "#eda65a"})
|
||||
# app.setStyle('Material')
|
||||
|
||||
window = MainWindow()
|
||||
|
||||
Reference in New Issue
Block a user