diff -r 7158aa054226 -r 077bcba2d485 controls/PouInstanceVariablesPanel.py --- a/controls/PouInstanceVariablesPanel.py Fri Oct 11 12:10:40 2013 +0200 +++ b/controls/PouInstanceVariablesPanel.py Sat Oct 12 10:10:30 2013 +0900 @@ -28,13 +28,6 @@ import wx.lib.agw.customtreectrl as CT import wx.lib.buttons -try: - import matplotlib - matplotlib.use('WX') - USE_MPL = True -except: - USE_MPL = False - # Customize CustomTreeItem for adding icon on item right CT.GenericTreeItem._rightimages = [] @@ -120,6 +113,8 @@ from util.BitmapLibrary import GetBitmap class PouInstanceVariablesPanel(wx.Panel): + + USE_MPL = False def __init__(self, parent, window, controller, debug): wx.Panel.__init__(self, name='PouInstanceTreePanel', @@ -252,7 +247,7 @@ right_images = [] if var_infos.var_class in ITEMS_VARIABLE: - if (not USE_MPL and var_infos.debug and self.Debug and + if (not self.USE_MPL and var_infos.debug and self.Debug and (self.Controller.IsOfType(var_infos.type, "ANY_NUM", True) or self.Controller.IsOfType(var_infos.type, "ANY_BIT", True))): right_images.append(self.InstanceGraphImage)