Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py

changeset 171
0bb5b5e2e219
parent 110
c9a969db1469
child 425
ca5e65413fc5
child 792
a13346916170
diff -r a267d9774acf -r 0bb5b5e2e219 Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py
--- a/Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py	Sun Apr 04 13:58:37 2010 +0000
+++ b/Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py	Mon Apr 05 11:08:19 2010 +0000
@@ -252,6 +252,9 @@
         
         @param fn filename to show the log for (string)
         """
+        self.errorGroup.hide()
+        QApplication.processEvents()
+        
         self.filename = fn
         self.dname, self.fname = self.vcs.splitPath(fn)
         
@@ -396,6 +399,7 @@
         error pane.
         """
         if self.process is not None:
+            self.errorGroup.show()
             s = str(self.process.readAllStandardError(), 
                      Preferences.getSystem("IOEncoding"), 
                      'replace')
@@ -586,7 +590,7 @@
         Private slot called, when the stop on copy/move checkbox is clicked
         """
         self.vcs.getPlugin().setPreferences("StopLogOnCopy", 
-                                            int(self.stopCheckBox.isChecked()))
+                                            self.stopCheckBox.isChecked())
         self.nextButton.setEnabled(True)
         self.limitSpinBox.setEnabled(True)
     
@@ -615,6 +619,7 @@
         else:
             self.errors.insertPlainText(input)
             self.errors.ensureCursorVisible()
+        self.errorGroup.show()
         
         self.process.write(input)
         

eric ide

mercurial