-
Notifications
You must be signed in to change notification settings - Fork 7
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
Make it clear that GroupPresetTableWidget slider values can be edited #336
Comments
that's a widget from superqt. |
That's a fair point. There are a couple other things I can think of that could be helpful:
|
I was thinking the same things. A tooltip on the combined slider-box widget could indicate which property it controls (as with the regular config groups), plus mention "click the number to enter a value". |
yeah, i think this is something that the app-builder should do with style sheets. superqt does currently setStyleSheet on the slider label, but it shouldn't... and after pyapp-kit/superqt#254, you could do this yourself with a stylesheet: from qtpy.QtWidgets import QApplication
from superqt import QLabeledSlider
app = QApplication([])
app.setStyleSheet(
"SliderLabel { border: 2px solid black; background-color: yellow; }"
)
sld = QLabeledSlider()
sld.show()
app.exec() |
Description
As I alluded to in this comment, my colleague did not notice that the
QDoubleSpinBox
in theGroupPresetTableWidget
could be edited. It'd be great to provide some visual clue (e.g. spin buttons) to indicate that it's editable, and not just a label.The text was updated successfully, but these errors were encountered: