qt-material icon indicating copy to clipboard operation
qt-material copied to clipboard

Material inspired stylesheet for PySide2, PySide6, PyQt5 and PyQt6

Results 60 qt-material issues
Sort by recently updated
recently updated
newest added

This is the difference between Designer and the icons rendered with your theme. ![Immagine](https://user-images.githubusercontent.com/17205637/189503013-e18834b8-6f61-44eb-89d6-476c062938fb.png)

- Related to #55 I'm a newbie to Pyside6 and qt_material. I used the source code at the end of this comment. But self.item(row, column).setBackground(color) has no effect when I...

the vertical slider widget with the round handle has the fill in the top half not the bottom half as it should be.

``` extra = {'QMenu': {'height':50}} apply_stylesheet(app=app, theme='dark_lightgreen.xml', extra=extra) menubar setting self.menubar.setNativeMenuBar(False) ``` ### setting apply_stylesheet ### not setting apply_stylesheet ### How do I set the menu bar to appear on...

Why did the column names become uppercase after using lib eg: self.p5_table1.setHorizontalHeaderLabels( ['Ra(Ω)', 'Rb(Ω)'])-->view is [RA(Ω),RB(Ω)]

I followed these steps: ```bash git clone https://github.com/UN-GCPDS/qt-material.git cd qt-material python setup.py install cd examples/full_features python main.py --pyqt5 ``` Those are the same steps as in the documentation. The only...

I'm using version 2.7 of qt_material, becase my pip won't let me upgrade to 2.8 or further. I'm using Windows. ![image](https://github.com/UN-GCPDS/qt-material/assets/80126839/c5a25075-3491-4eea-9b68-7feef6024ab5) But there is up to 2.14: How is this...

Hi I wrote a custom spinbox using `QAbstractSpinBox`, but I found there is no style for `QAbstractSpinBox` like `QSpinbBox` and `QDoubleSpinBox`. Could you please add it in the template? Thank...

Fix `exec_` name of function.

Minimal reproducable code example (using `QFontComboBox`): ```py 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')...