Changeset 4110


Ignore:
Timestamp:
Aug 23, 2019 11:33:06 AM (4 years ago)
Author:
vondreele
Message:

fix main & plot saved size issue

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/GSASIIdataGUI.py

    r4108 r4110  
    27722772        try:
    27732773            size = GSASIIpath.GetConfigValue('Main_Size')
    2774             if type(size) is str:
     2774            if type(size) is tuple:
     2775                pass
     2776            elif type(size) is str:
    27752777                size = eval(size)
    27762778            else:
     
    28352837        try:
    28362838            size = GSASIIpath.GetConfigValue('Plot_Size')
    2837             if type(size) is str:
     2839            if type(size) is tuple:
     2840                pass
     2841            elif type(size) is str:
    28382842                size = eval(size)
    28392843            else:
Note: See TracChangeset for help on using the changeset viewer.