Skip to content

Commit

Permalink
Increase Slider Range
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbhr committed Nov 28, 2024
1 parent d8f9728 commit f7236c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion saenopy/gui/solver/modules/VTK_Toolbar.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def __init__(self, plotter: BasePlotter, update_display, scalbar_type="deformati
self.window_scale = QtWidgets.QWidget()
self.window_scale.setWindowTitle("Saenopy - Arrow Scale")
with QtShortCuts.QVBoxLayout(self.window_scale):
self.arrow_scale = QtShortCuts.QInputNumber(None, "arrow scale", 1, 0.1, 10, use_slider=True, log_slider=True)
self.arrow_scale = QtShortCuts.QInputNumber(None, "arrow scale", 1, 0.01, 40, use_slider=True, log_slider=True) ## Extend Slider Max here
self.arrow_scale.valueChanged.connect(self.update_display)
addition = ""
if self.is_force_plot:
Expand Down

0 comments on commit f7236c7

Please sign in to comment.