Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

cmdui: use QTextBrowser instead of QTextEdit

Changeset 440ac46e5f29

Parent 40aa4c8df7ef

by Yuki KODAMA

Changes to one file · Browse files at 440ac46e5f29 Showing diff from parent 40aa4c8df7ef Diff from another changeset...

 
7
8
9
10
 
11
12
13
 
75
76
77
78
79
 
80
81
82
 
7
8
9
 
10
11
12
13
 
75
76
77
 
 
78
79
80
81
@@ -7,7 +7,7 @@
   from PyQt4.QtCore import Qt, QObject, pyqtSignal  from PyQt4.QtGui import QDialog, QDialogButtonBox, QLabel, QProgressBar -from PyQt4.QtGui import QTextEdit, QHBoxLayout, QGridLayout, QMessageBox +from PyQt4.QtGui import QTextBrowser, QHBoxLayout, QGridLayout, QMessageBox  from PyQt4.QtGui import QWidget, QVBoxLayout    from tortoisehg.util import hglib @@ -75,8 +75,7 @@
  super(Core, self).__init__()     self.thread = None - self.output_text = QTextEdit() - self.output_text.setReadOnly(True) + self.output_text = QTextBrowser()   self.output_text.document().setDefaultStyleSheet(qtlib.thgstylesheet)   self.pmon = None