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