We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34c0c86 commit 117a46fCopy full SHA for 117a46f
src/diffpy/pdfgui/gui/extendedplotframe.py
@@ -20,8 +20,6 @@
20
import os.path
21
22
import matplotlib
23
-
24
-matplotlib.use("WXAgg")
25
import wx
26
from matplotlib.artist import setp
27
from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas
@@ -32,6 +30,8 @@
32
30
from diffpy.pdfgui.gui.pdfguiglobals import iconpath
33
31
from diffpy.pdfgui.gui.wxextensions import wx12
34
+matplotlib.use("WXAgg")
+
35
DATA_SAVE_ID = wx12.NewIdRef()
36
37
@@ -303,7 +303,7 @@ def __translateStyles(self, style):
303
symbolSize = style["symbolSize"]
304
symbolColor = colorDict.get(style["symbolColor"], "k")
305
properties.update(
306
- { #'linewidth':0.0, # doesn't affect any
+ { # 'linewidth':0.0, # doesn't affect any
307
"markerfacecolor": symbolColor,
308
"markeredgecolor": color,
309
"marker": symbol,
0 commit comments