Changeset 4617 for trunk


Ignore:
Timestamp:
Oct 22, 2020 12:33:18 PM (3 years ago)
Author:
vondreele
Message:

removed 'backbone' as a possible macromolecular plot default - doesn't work

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIobj.py

    r4616 r4617  
    32773277    if typ in ('lines','vdW balls','sticks','balls & sticks','ellipsoids'):
    32783278        return typ
    3279     elif generalData.get('Type','') == 'macromolecular':
    3280         if typ in ('backbone','ribbons','schematic'):
    3281             return typ
    3282     elif typ == 'polyhedra':
    3283         return 'polyhedra'
     3279    # elif generalData.get('Type','') == 'macromolecular':
     3280    #     if typ in ('backbone',):
     3281    #         return typ
    32843282    return 'vdW balls'
    32853283
  • trunk/config_example.py

    r4615 r4617  
    224224'''
    225225
    226 enum_DrawAtoms_default = ['','lines','vdW balls','sticks','balls & sticks',
    227        'ellipsoids','polyhedra','backbone','ribbons','schematic']
     226enum_DrawAtoms_default = ['','lines','vdW balls','sticks','balls & sticks','ellipsoids',]
    228227'choices for DrawAtoms_default'
    229228DrawAtoms_default = ''
    230229'''Allows selection of the default plotting mode for structures
    231230in Draw Atoms. The only valid values are:
    232 'lines', 'vdW balls', 'sticks', 'balls & sticks', 'ellipsoids', 'polyhedra',
    233 'backbone', 'ribbons', 'schematic', where 'polyhedra' is invalid for
    234 macromolecular phases and 'backbone', 'ribbons' & 'schematic' is invalid for
    235 non-macromolecular phases. %% If a non-valid choice is used (the default)
     231'lines', 'vdW balls', 'sticks', 'balls & sticks', 'ellipsoids'.
     232%% If a non-valid choice is used (the default)
    236233'vdW balls' is used.
    237234'''
Note: See TracChangeset for help on using the changeset viewer.