Skip to content
New issue

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

QRangeSlider is not displayed correctly #129

Closed
pascalzeugin opened this issue Oct 17, 2022 · 1 comment
Closed

QRangeSlider is not displayed correctly #129

pascalzeugin opened this issue Oct 17, 2022 · 1 comment

Comments

@pascalzeugin
Copy link

Description
When enabling a stylesheet (https://pypi.org/project/pyqtdarktheme/) the QRangeSlider and all its derivatives are not rendered/displayed correctly.

To Reproduce
Steps to reproduce the behavior:

  1. Install pyqtdarktheme version 1.1.0
  2. Install qtpy
  3. Install superqt
  4. Execute minimal example
from qtpy.QtCore import Qt
from qtpy.QtWidgets import QApplication
from superqt import QRangeSlider
import qdarktheme

app = QApplication([])
app.setStyleSheet(qdarktheme.load_stylesheet())
slider = QRangeSlider(Qt.Orientation.Horizontal)
slider.setValue((20, 80))
slider.show()

app.exec_()

Expected behavior
Correct rendering of the widget

Desktop (please complete the following information):

  • Win10
  • PyQt5
  • Python 3.9
    2022-10-17 10_22_53-Window
@tlambert03
Copy link
Member

yes, sorry this is a known issue, and a duplicate of issue #58

to keep things in one place, i'm going to close this issue and refer others to that one

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

2 participants