mirror of
https://github.com/pyapp-kit/superqt.git
synced 2025-07-21 04:01:07 +02:00
13 lines
246 B
Python
13 lines
246 B
Python
from superqt import QDoubleSlider
|
|
from superqt.qtcompat.QtCore import Qt
|
|
from superqt.qtcompat.QtWidgets import QApplication
|
|
|
|
app = QApplication([])
|
|
|
|
sld = QDoubleSlider(Qt.Horizontal)
|
|
sld.setRange(0, 1)
|
|
sld.setValue(0.5)
|
|
sld.show()
|
|
|
|
app.exec_()
|