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

workbench: use Courier font in change message widget

Changeset fc48fdac0213

Parent 4a6cc367186c

by Adrian Buehlmann

Changes to 2 files · Browse files at fc48fdac0213 Showing diff from parent 4a6cc367186c Diff from another changeset...

 
106
107
108
 
 
 
 
 
109
110
111
 
150
151
152
 
 
 
 
 
 
153
154
155
 
106
107
108
109
110
111
112
113
114
115
116
 
155
156
157
158
159
160
161
162
163
164
165
166
@@ -106,6 +106,11 @@
  <height>0</height>   </size>   </property> + <property name="font"> + <font> + <pointsize>8</pointsize> + </font> + </property>   </widget>   </item>   <item> @@ -150,6 +155,12 @@
  <height>0</height>   </size>   </property> + <property name="font"> + <font> + <family>Courier</family> + <pointsize>9</pointsize> + </font> + </property>   </widget>   <widget class="HgFileView" name="textview_status" native="true">   <property name="sizePolicy">
 
2
3
4
5
 
6
7
8
 
74
75
76
 
 
 
77
78
79
 
96
97
98
 
 
 
 
99
100
101
 
2
3
4
 
5
6
7
8
 
74
75
76
77
78
79
80
81
82
 
99
100
101
102
103
104
105
106
107
108
@@ -2,7 +2,7 @@
   # Form implementation generated from reading ui file 'C:\Users\adi\hgrepos\thg-qt\tortoisehg\hgqt\workbench.ui'  # -# Created: Tue May 04 17:29:27 2010 +# Created: Tue May 04 18:53:26 2010  # by: PyQt4 UI code generator 4.7.3  #  # WARNING! All changes made in this file will be lost! @@ -74,6 +74,9 @@
  sizePolicy.setHeightForWidth(self.textview_header.sizePolicy().hasHeightForWidth())   self.textview_header.setSizePolicy(sizePolicy)   self.textview_header.setMinimumSize(QtCore.QSize(0, 0)) + font = QtGui.QFont() + font.setPointSize(8) + self.textview_header.setFont(font)   self.textview_header.setObjectName("textview_header")   self.verticalLayout.addWidget(self.textview_header)   self.splitter = QtGui.QSplitter(self.frame) @@ -96,6 +99,10 @@
  sizePolicy.setHeightForWidth(self.message.sizePolicy().hasHeightForWidth())   self.message.setSizePolicy(sizePolicy)   self.message.setMinimumSize(QtCore.QSize(0, 0)) + font = QtGui.QFont() + font.setFamily("Courier") + font.setPointSize(9) + self.message.setFont(font)   self.message.setObjectName("message")   self.textview_status = HgFileView(self.splitter)   sizePolicy = QtGui.QSizePolicy(QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding)