From d98e4a571399cf9e7ebed950405152208c372a35 Mon Sep 17 00:00:00 2001 From: Ansgar Philippsen <ansgar.philippsen@gmail.com> Date: Wed, 19 Dec 2012 16:07:32 -0500 Subject: [PATCH] tweaked some gui custom widget min/max values --- modules/gui/pymod/scene/custom_widget.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/gui/pymod/scene/custom_widget.py b/modules/gui/pymod/scene/custom_widget.py index 7a7eb2e92..a0413862d 100644 --- a/modules/gui/pymod/scene/custom_widget.py +++ b/modules/gui/pymod/scene/custom_widget.py @@ -33,14 +33,14 @@ class CustomWidget(RenderModeWidget): #Defaults min_sphere_detail = 1 - max_sphere_detail = 20 + max_sphere_detail = 12 min_arc_detail = 1 - max_arc_detail = 20 + max_arc_detail = 12 min_rad = 0.05 - max_bond_rad = 1.0 - max_sphere_rad = 1.0 + max_bond_rad = 5.0 + max_sphere_rad = 5.0 -- GitLab