mirror of
https://github.com/pyapp-kit/superqt.git
synced 2025-09-07 10:10:31 +02:00
commit 466fc7c19ace1343d23739e4058758cd21328511 Author: Talley Lambert <talley.lambert@gmail.com> Date: Wed Jun 2 20:22:38 2021 -0400 add deploy cond commit e9965e71490689935b61099225acc7f3bf5c2d48 Author: Talley Lambert <talley.lambert@gmail.com> Date: Wed Jun 2 20:20:45 2021 -0400 more precommit commit b39150b16d7d64a5530ec9a0e29e673e2b6ed0a4 Author: Talley Lambert <talley.lambert@gmail.com> Date: Wed Jun 2 19:52:42 2021 -0400 updating precommit commit d5018b38e7bc59f81cc161cca06fae829e493e3c Author: Talley Lambert <talley.lambert@gmail.com> Date: Wed Jun 2 19:42:32 2021 -0400 big reorg
14 lines
280 B
Python
14 lines
280 B
Python
from qwidgets import QRangeSlider
|
|
from qwidgets.qtcompat.QtCore import Qt
|
|
from qwidgets.qtcompat.QtWidgets import QApplication
|
|
|
|
app = QApplication([])
|
|
|
|
slider = QRangeSlider(Qt.Horizontal)
|
|
slider = QRangeSlider(Qt.Horizontal)
|
|
|
|
slider.setValue((20, 80))
|
|
slider.show()
|
|
|
|
app.exec_()
|