From cd2b2aaf42057bfba781568d95b636d10cd9df45 Mon Sep 17 00:00:00 2001 From: Ray Date: Mon, 6 Apr 2009 11:03:51 -0400 Subject: [PATCH] Comment out some intermediate print. --- pyfpdb/Hud.py | 6 +++--- pyfpdb/Mucked.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyfpdb/Hud.py b/pyfpdb/Hud.py index 15145095..3646c6c9 100644 --- a/pyfpdb/Hud.py +++ b/pyfpdb/Hud.py @@ -204,14 +204,14 @@ class Hud: def reposition_windows(self, *args): for w in self.stat_windows.itervalues(): if type(w) == int: - print "in reposition, w =", w +# print "in reposition, w =", w continue - print "in reposition, w =", w, w.x, w.y +# print "in reposition, w =", w, w.x, w.y w.window.move(w.x, w.y) return True def debug_stat_windows(self, *args): - print self.table, "\n", self.main_window.window.get_transient_for() +# print self.table, "\n", self.main_window.window.get_transient_for() for w in self.stat_windows: print self.stat_windows[w].window.window.get_transient_for() diff --git a/pyfpdb/Mucked.py b/pyfpdb/Mucked.py index 9d70f8e3..93f6d102 100755 --- a/pyfpdb/Mucked.py +++ b/pyfpdb/Mucked.py @@ -451,7 +451,7 @@ class Flop_Mucked(Aux_Window): def save_layout(self, *args): """Save new layout back to the aux element in the config file.""" new_locs = {} - print "adj =", self.adj +# print "adj =", self.adj for (i, pos) in self.positions.iteritems(): if i != 'common': new_locs[self.adj[int(i)]] = (pos[0] - self.hud.table.x, pos[1] - self.hud.table.y)