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

sync: make details and post-pull dialogs 'sheets' on Mac OS X

This makes the dialogs drop from the window bar in a very Mac fashion

Changeset 8cf15674dc1b

Parent 4a736657cd66

by Steve Borho

Changes to one file · Browse files at 8cf15674dc1b Showing diff from parent 4a736657cd66 Diff from another changeset...

 
244
245
246
 
 
247
248
249
 
568
569
570
 
 
571
572
573
 
244
245
246
247
248
249
250
251
 
570
571
572
573
574
575
576
577
@@ -244,6 +244,8 @@
    def details(self):   dlg = DetailsDialog(self.opts, self) + dlg.setWindowFlags(Qt.Sheet) + dlg.setWindowModality(Qt.WindowModal)   if dlg.exec_() == QDialog.Accepted:   self.opts.update(dlg.outopts)   @@ -568,6 +570,8 @@
    def postpullclicked(self):   dlg = PostPullDialog(self.repo, self) + dlg.setWindowFlags(Qt.Sheet) + dlg.setWindowModality(Qt.WindowModal)   dlg.exec_()     def emailclicked(self):