We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Minimal reproducable code example (using QFontComboBox):
QFontComboBox
from PyQt6.QtWidgets import QApplication, QWidget, QFontComboBox from qt_material import apply_stylesheet app = QApplication([]) window = QWidget() combo = QFontComboBox(window) combo.move(50, 50) apply_stylesheet(app, theme='dark_blue.xml') window.show() app.exec()
My OS is Windows 11 with transparency enabled
The text was updated successfully, but these errors were encountered:
Yes and also all lineEdits! They are all black!
I tried to set color in QtDesigner, and when I ran the program, the font color doesn't change at all.
In this screenshot, the "username" should be blue but gray because I set the color in QtDesigner.
Sorry, something went wrong.
No branches or pull requests
Minimal reproducable code example (using
QFontComboBox
):My OS is Windows 11 with transparency enabled
The text was updated successfully, but these errors were encountered: