From 495cc14b1cb19c197c5f006617bd78da984b8585 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sat, 31 Jul 2010 16:20:08 -0400 Subject: [PATCH] Also remove crufty old gui.plugin.plot --- hooke/ui/gui/plugin/plot.py | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 hooke/ui/gui/plugin/plot.py diff --git a/hooke/ui/gui/plugin/plot.py b/hooke/ui/gui/plugin/plot.py deleted file mode 100644 index 26cd8a2..0000000 --- a/hooke/ui/gui/plugin/plot.py +++ /dev/null @@ -1,24 +0,0 @@ -#!/usr/bin/env python - -''' -plot.py - -Global settings for plots - -Copyright 2010 by Dr. Rolf Schmidt (Concordia University, Canada) - -This program is released under the GNU General Public License version 2. -''' - -class plotCommands: - - def do_preferences(self): - active_file = self.GetActiveFile() - for curve in active_file.plot.curves: - curve.decimals.x = self.GetIntFromConfig('plot', 'preferences', 'x_decimals') - curve.decimals.y = self.GetIntFromConfig('plot', 'preferences', 'y_decimals') - curve.legend = self.GetBoolFromConfig('plot', 'preferences', 'legend') - curve.prefix.x = self.GetStringFromConfig('plot', 'preferences', 'x_prefix') - curve.prefix.y = self.GetStringFromConfig('plot', 'preferences', 'y_prefix') - - self.UpdatePlot(); -- 2.26.2