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

commit: layout fine tuning

Changeset 63fbedab5d2d

Parent b6405f1d55be

by Adrian Buehlmann

Changes to one file · Browse files at 63fbedab5d2d Showing diff from parent b6405f1d55be Diff from another changeset...

 
53
54
55
 
56
57
58
 
59
60
61
 
65
66
67
68
 
69
70
71
 
76
77
78
 
79
80
81
 
53
54
55
56
57
58
59
60
61
62
63
 
67
68
69
 
70
71
72
73
 
78
79
80
81
82
83
84
@@ -53,9 +53,11 @@
  self.msghistory = []     layout = QVBoxLayout() + layout.setContentsMargins(0, 0, 0, 0)   layout.addWidget(self.stwidget)   self.setLayout(layout)   form = QFormLayout() + form.setContentsMargins(3, 9, 9, 0)   usercombo = QComboBox()   usercombo.addItem(hglib.tounicode(self.stwidget.repo[None].user()))   usercombo.setEditable(True) @@ -65,7 +67,7 @@
  str(self.stwidget.repo['.'])))   frame = QFrame()   frame.setLayout(form) - frame.setFrameStyle(QFrame.StyledPanel) + frame.setFrameStyle(QFrame.NoFrame)     vbox = QVBoxLayout()   vbox.addWidget(frame, 0) @@ -76,6 +78,7 @@
  msgcombo = MessageHistoryCombo()   self.connect(msgcombo, SIGNAL('activated(int)'), self.msgSelected)   hbox.addWidget(msgcombo, 1) + hbox.addSpacing(9)   vbox.addLayout(hbox, 0)   msgte = QTextEdit()   msgte.setAcceptRichText(False)