From e12f0a39c3c87599f9c096bab7f116f7ab2560de Mon Sep 17 00:00:00 2001 From: John Schember Date: Sun, 14 Jun 2009 08:13:44 -0400 Subject: [PATCH] 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. --- src/calibre/gui2/widgets.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/calibre/gui2/widgets.py b/src/calibre/gui2/widgets.py index 9c62f53d3f..ff21a8f67e 100644 --- a/src/calibre/gui2/widgets.py +++ b/src/calibre/gui2/widgets.py @@ -344,8 +344,6 @@ class DetailView(QDialog, Ui_Dialog): self.next_pos = f.tell() if more: self.log.appendPlainText(more.decode('utf-8', 'replace')) - vbar = self.log.verticalScrollBar() - vbar.setValue(vbar.maximum()) class JobsView(TableView):