Revision: 74
http://roreditor.svn.sourceforge.net/roreditor/?rev=74&view=rev
Author: rorthomas
Date: 2007-07-01 07:10:37 -0700 (Sun, 01 Jul 2007)
Log Message:
-----------
* minor gui bugfix
Modified Paths:
--------------
trunk/lib/ror/svngui.py
Modified: trunk/lib/ror/svngui.py
===================================================================
--- trunk/lib/ror/svngui.py 2007-07-01 14:08:19 UTC (rev 73)
+++ trunk/lib/ror/svngui.py 2007-07-01 14:10:37 UTC (rev 74)
@@ -19,15 +19,16 @@
svn.svnupdate(self.notify)
self.showfinished()
self.pr.Hide()
+ del self.pr
def showfinished(self):
- dlg = wx.MessageDialog(self, "Update finished!\nPlease restart the Application!", "Info", wx.OK | wx.ICON_INFORMATION)
+ dlg = wx.MessageDialog(self.pr, "Update finished!\nPlease restart the Application!", "Info", wx.OK | wx.ICON_INFORMATION)
dlg.ShowModal()
dlg.Destroy()
def notify(self, event_dict):
self.changes += 1
msg = str(event_dict['action']) + ", " + event_dict['path']
- self.pr.Update(self.changes % 100, msg)
- #self.pr.Pulse(msg)
+ #self.pr.Update(self.changes % 100, msg)
+ self.pr.Pulse(msg)
\ No newline at end of file
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|