Skip to content

Commit

Permalink
Change slider size.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrijbes committed Dec 2, 2021
1 parent 490e7fd commit 8f3f465
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion detailist_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def get_diff_window(self):
gui.Text('Comparison:'),
gui.Combo(['Heatmap', 'Opacity', 'Simple Diff'], size=(8, 6), enable_events=True, key=self.comparison_mode_key,
default_value='Heatmap', tooltip='Comparison Mode', readonly=True),
gui.Slider(size=(20, 20), range=(1, 100), orientation='h', key=self.comparison_strenght_key, enable_events=True, disable_number_display=True,
gui.Slider(size=(int(self.screen_one_third_h//18), 20), range=(1, 100), orientation='h', key=self.comparison_strenght_key, enable_events=True, disable_number_display=True,
default_value=self.comparison_strenght, tooltip='Comparison Strenght')
],
[
Expand Down

0 comments on commit 8f3f465

Please sign in to comment.