diff options
author | ccolin | 2021-01-03 13:35:26 +0100 |
---|---|---|
committer | ccolin | 2021-01-03 13:35:26 +0100 |
commit | 0a6b133c19ccc69ecc6bcf6be83e8ec7f5f8150f (patch) | |
tree | fb9de23b150c718ea303ec61461a66820a085525 /src/settings_pane.cc | |
parent | 7e0554bf65b9be61f3b73625d762a5043ad2af0f (diff) |
fix collision detection
Diffstat (limited to 'src/settings_pane.cc')
-rw-r--r-- | src/settings_pane.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/settings_pane.cc b/src/settings_pane.cc index fe2abd3..096bc08 100644 --- a/src/settings_pane.cc +++ b/src/settings_pane.cc @@ -10,6 +10,7 @@ SettingsPane::SettingsPane(QWidget *parent) :QWidget(parent) { QDoubleSpinBox *sphere_radius = new QDoubleSpinBox(); + sphere_radius->setSingleStep(.1); QCheckBox *show_trajectories = new QCheckBox(); QCheckBox *show_support_lines = new QCheckBox(); collisions = new QListWidget(); |