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

mq: layout tweaks

Changeset 06f10a6ba12c

Parent 655b3f0b1696

by Steve Borho

Changes to one file · Browse files at 06f10a6ba12c Showing diff from parent 655b3f0b1696 Diff from another changeset...

 
56
57
58
59
60
61
62
 
63
64
65
66
67
 
68
69
70
 
109
110
111
 
112
113
114
115
116
 
117
118
119
 
126
127
128
 
 
 
129
130
131
 
135
136
137
138
139
140
141
142
143
144
145
146
147
148
 
56
57
58
 
59
60
61
62
63
64
65
66
 
67
68
69
70
 
109
110
111
112
113
114
115
116
 
117
118
119
120
 
127
128
129
130
131
132
133
134
135
 
139
140
141
 
 
 
 
 
 
 
 
142
143
144
@@ -56,15 +56,15 @@
    self.queueFrame = QFrame(splitter)   self.messageFrame = QFrame(splitter) - self.fileListFrame = QFrame(splitter)     # Patch Queue Frame   layout = QVBoxLayout() + layout.setSpacing(5)   layout.setContentsMargins(0, 0, 0, 0)   self.queueFrame.setLayout(layout)     qtbarhbox = QHBoxLayout() - qtbarhbox.setSpacing(2) + qtbarhbox.setSpacing(5)   layout.addLayout(qtbarhbox, 0)   qtbarhbox.setContentsMargins(0, 0, 0, 0)   self.qpushAllBtn = tb = QToolButton() @@ -109,11 +109,12 @@
    # Message Frame   layout = QVBoxLayout() + layout.setSpacing(5)   layout.setContentsMargins(0, 0, 0, 0)   self.messageFrame.setLayout(layout)     mtbarhbox = QHBoxLayout() - mtbarhbox.setSpacing(5) + mtbarhbox.setSpacing(8)   layout.addLayout(mtbarhbox, 0)   mtbarhbox.setContentsMargins(0, 0, 0, 0)   self.newCheckBox = QCheckBox(_('New Patch')) @@ -126,6 +127,9 @@
  self.messageEditor.refresh(repo)   layout.addWidget(self.messageEditor, 1)   + self.fileListWidget = QListWidget(self) + layout.addWidget(self.fileListWidget, 2) +   qrefhbox = QHBoxLayout()   layout.addLayout(qrefhbox, 0)   qrefhbox.setContentsMargins(0, 0, 0, 0) @@ -135,14 +139,6 @@
  qrefhbox.addWidget(self.shelveBtn)   qrefhbox.addWidget(self.qnewOrRefreshBtn)   - # File List Frame - layout = QVBoxLayout() - layout.setContentsMargins(0, 0, 0, 0) - self.fileListFrame.setLayout(layout) - - self.fileListWidget = QListWidget(self) - layout.addWidget(self.fileListWidget, 0) -   # Command runner and connections...   self.cmd = cmdui.Runner(_('Patch Queue'), parent != None, self)   self.cmd.output.connect(self.output)