Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClemens Barth <barth@root-1.de>2013-01-16 22:15:36 +0400
committerClemens Barth <barth@root-1.de>2013-01-16 22:15:36 +0400
commita0e9252013ac05824d134b20af46c8ef21aeb3a5 (patch)
tree409cd3d470921feca2fdad7b7d0f2029ba8f3f77 /io_mesh_pdb
parentaa2e740d6a70785031a7a28c5eb3a8e10c0a34aa (diff)
Quite annoying: When importing an atomic structure with sticks, the sticks
were not automatically smoothened. I changed the default value from False to True. Blendphys.
Diffstat (limited to 'io_mesh_pdb')
-rw-r--r--io_mesh_pdb/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/io_mesh_pdb/__init__.py b/io_mesh_pdb/__init__.py
index 92d937bc..be787ca1 100644
--- a/io_mesh_pdb/__init__.py
+++ b/io_mesh_pdb/__init__.py
@@ -24,7 +24,7 @@
#
# Start of project : 2011-08-31 by Clemens Barth
# First publication in Blender : 2011-11-11
-# Last modified : 2012-11-09
+# Last modified : 2013-01-16
#
# Acknowledgements
# ================
@@ -121,7 +121,7 @@ class ImportPDB(Operator, ImportHelper):
name="Color", default=True,
description="The sticks appear in the color of the atoms")
use_sticks_smooth = BoolProperty(
- name="Smooth", default=False,
+ name="Smooth", default=True,
description="The sticks are round (sectors are not visible)")
use_sticks_bonds = BoolProperty(
name="Bonds", default=False,