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

stable repowidget: display GotoQuickBar at the right of the toolbar

Once performing an incoming request, the Accept and Reject buttons
are now at the left and no more in the center if the GotoQuickBar is
enabled.

Changeset d2a4c1587c7c

Parent b42f46fbe8a2

by André Sintzoff

Changes to one file · Browse files at d2a4c1587c7c Showing diff from parent b42f46fbe8a2 Diff from another changeset...

 
97
98
99
100
101
102
103
104
105
106
107
 
126
127
128
 
 
 
 
 
129
130
131
 
97
98
99
 
 
 
 
 
100
101
102
 
121
122
123
124
125
126
127
128
129
130
131
@@ -97,11 +97,6 @@
  hbox.setSpacing(0)   self.layout().addLayout(hbox)   - self.gototb = tb = GotoQuickBar(self) - tb.setObjectName('gototb') - tb.gotoSignal.connect(self.goto) - hbox.addWidget(tb) -   self.bundleAccept = b = QPushButton(_('Accept'))   b.setShown(False)   b.setToolTip(_('Pull incoming changesets into your repository')) @@ -126,6 +121,11 @@
    self.revsetfilter = self.filterbar.filtercb.isChecked()   + self.gototb = tb = GotoQuickBar(self) + tb.setObjectName('gototb') + tb.gotoSignal.connect(self.goto) + hbox.addWidget(tb) +   self.layout().addWidget(self.repotabs_splitter)     self.repoview = view = HgRepoView(self.repo, self)