Stop auto-scroll in detail view. It is unnecessary because appeneding will scroll the view. Also, it prevents the user from looking at earlier messages because it scrolls to the bottom every second.

This commit is contained in:
John Schember 2009-06-14 08:13:44 -04:00
parent 2ed396d2c1
commit e12f0a39c3

View File

@ -344,8 +344,6 @@ class DetailView(QDialog, Ui_Dialog):
self.next_pos = f.tell() self.next_pos = f.tell()
if more: if more:
self.log.appendPlainText(more.decode('utf-8', 'replace')) self.log.appendPlainText(more.decode('utf-8', 'replace'))
vbar = self.log.verticalScrollBar()
vbar.setValue(vbar.maximum())
class JobsView(TableView): class JobsView(TableView):