##// END OF EJS Templates
Added workaround for bug in PyQt.
epatters -
Show More
@@ -329,6 +329,12 b' class ConsoleWidget(QtGui.QPlainTextEdit):'
329 self._keep_cursor_in_buffer()
329 self._keep_cursor_in_buffer()
330 QtGui.QPlainTextEdit.paste(self)
330 QtGui.QPlainTextEdit.paste(self)
331
331
332 def print_(self, printer):
333 """ Reimplemented to work around bug in PyQt where the C++ level
334 'print_' slot has the wrong signature.
335 """
336 QtGui.QPlainTextEdit.print_(self, printer)
337
332 #---------------------------------------------------------------------------
338 #---------------------------------------------------------------------------
333 # 'ConsoleWidget' public interface
339 # 'ConsoleWidget' public interface
334 #---------------------------------------------------------------------------
340 #---------------------------------------------------------------------------
General Comments 0
You need to be logged in to leave comments. Login now