所以我使用线程进行数据处理并将这些数据显示在图表上。这些看起来都不错,因为运行一段时间后(或将其切换到背景然后将其切换回来),当我的鼠标像这样移动到它们上方时,我的按钮变成白色样式。 我正在使用 qdarktheme,谁能告诉我为什么会这样?先谢谢了! 我想知道如何去除这种副作用,让我的程序风格保持一致
if __name__ == '__main__':
app = QApplication(sys.argv)
qss = """
QPushButton {
color: yellow;
}
QPushButton::pressed{
color: yellow;
}
QTabBar{
color: grey;
}
QToolTip{
color: red;
}
"""
qdarktheme.setup_theme(additional_qss=qss)
window = Analyzer()
window.show()
# terminate program if not responding
threading.Thread(target=ter.check_job,daemon=True).start()
sys.exit(app.exec())