Fixed a little issue in the IRC Channel widget removing the marker line.

Sat, 22 Dec 2012 15:16:16 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 22 Dec 2012 15:16:16 +0100
changeset 2281
0f04ae738a11
parent 2280
8e85ca3fabe7
child 2282
c4bf7c7a1198

Fixed a little issue in the IRC Channel widget removing the marker line.

Network/IRC/IrcChannelWidget.py file | annotate | diff | comparison | revisions
--- a/Network/IRC/IrcChannelWidget.py	Sat Dec 22 15:09:28 2012 +0100
+++ b/Network/IRC/IrcChannelWidget.py	Sat Dec 22 15:16:16 2012 +0100
@@ -11,7 +11,7 @@
 
 from PyQt4.QtCore import pyqtSlot, pyqtSignal, QDateTime, QPoint, QFileInfo, QTimer
 from PyQt4.QtGui import QWidget, QListWidgetItem, QIcon, QPainter, QMenu, QApplication, \
-    QInputDialog, QLineEdit
+    QInputDialog, QLineEdit, QTextCursor
 
 from E5Gui import E5MessageBox, E5FileDialog
 from E5Gui.E5Application import e5App
@@ -1058,6 +1058,7 @@
                 txt = txt.replace(self.__markerLine, "")
             self.messages.setHtml(txt)
             self.__markerLine = ""
+            self.messages.moveCursor(QTextCursor.End)
     
     def __clearMessages(self):
         """

eric ide

mercurial