# HG changeset patch # User Yuki KODAMA <endflow....@gmail.com> # Date 1254843473 -32400 # Node ID 595ee06d51ea293b0b3145e213ef07bd69fa2d0c # Parent ae6618e958e364bf3bd721e85582576815f577c1 quickop: fix a hard crash after deleting unversioned files
Fixes issue #614 diff --git a/tortoisehg/hgtk/quickop.py b/tortoisehg/hgtk/quickop.py --- a/tortoisehg/hgtk/quickop.py +++ b/tortoisehg/hgtk/quickop.py @@ -244,7 +244,7 @@ pass if not list: - self.destroy() + gobject.idle_add(self.response, gtk.RESPONSE_CLOSE) return cmdline = ['hg', self.command, '--verbose'] + list @@ -254,7 +254,7 @@ if returncode == 0: shlib.shell_notify(list) if not self.cmd.is_show_log(): - self.destroy() + self.response(gtk.RESPONSE_CLOSE) self.switch_to(MODE_WORKING) self.cmd.execute(cmdline, cmd_done)
thg-kuy_rev4433.patch
Description: Binary data
------------------------------------------------------------------------------ Come build with us! The BlackBerry® Developer Conference in SF, CA is the only developer event you need to attend this year. Jumpstart your developing skills, take BlackBerry mobile applications to market and stay ahead of the curve. Join us from November 9-12, 2009. Register now! http://p.sf.net/sfu/devconf
_______________________________________________ Tortoisehg-develop mailing list Tortoisehg-develop@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/tortoisehg-develop