From b19191ef0e8cd01c92396c932e0a96ec432424ef Mon Sep 17 00:00:00 2001 From: emijrp Date: Mon, 5 Mar 2012 00:50:39 +0000 Subject: [PATCH] commenting double click function git-svn-id: https://wikiteam.googlecode.com/svn/trunk@386 31edc4fc-5e31-b4c4-d58b-c8bc928bcb95 --- gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui.py b/gui.py index b81cc85..6b9c262 100644 --- a/gui.py +++ b/gui.py @@ -150,7 +150,7 @@ class App: self.tree.heading('status', text='Status') self.tree.grid(row=2, column=0, columnspan=9, sticky=W+E+N+S) [self.tree.heading(column, text=column, command=lambda: self.treeSortColumn(column=column, reverse=False)) for column in columns] - self.tree.bind("", self.downloadDump) + #self.tree.bind("", (lambda: thread.start_new_thread(self.downloadDump, ()))) self.tree.tag_configure('downloaded', background='lightgreen') self.tree.tag_configure('nodownloaded', background='white') self.button21 = Button(self.frame2, text="Load available dumps", command=lambda: thread.start_new_thread(self.loadAvailableDumps, ()), width=15)