From d7a7cca2abd2bddfb6451e94224d4565ec51b43e Mon Sep 17 00:00:00 2001 From: steffen123 Date: Tue, 10 Aug 2010 20:50:19 +0200 Subject: [PATCH] Revert "GRAPH: Put legend in "best" position, not fixed in top left." previous consensus that I wasn't aware was to have the old setting, since "best" is only better in some cases so I'm reverting this This reverts commit 2d8f9dcc78d8d271304293813e58e4791dbef18c. --- pyfpdb/GuiGraphViewer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/GuiGraphViewer.py b/pyfpdb/GuiGraphViewer.py index e1a719ba..96026864 100644 --- a/pyfpdb/GuiGraphViewer.py +++ b/pyfpdb/GuiGraphViewer.py @@ -232,7 +232,7 @@ class GuiGraphViewer (threading.Thread): if sys.version[0:3] == '2.5': self.ax.legend(loc='upper left', shadow=True, prop=FontProperties(size='smaller')) else: - self.ax.legend(loc='best', fancybox=True, shadow=True, prop=FontProperties(size='smaller')) + self.ax.legend(loc='upper left', fancybox=True, shadow=True, prop=FontProperties(size='smaller')) self.graphBox.add(self.canvas) self.canvas.show()