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

remove context help button from titlebar

Changeset 859ec43c8d9a

Parent b8babf337f12

by Johan Samyn

Changes to 5 files · Browse files at 859ec43c8d9a Showing diff from parent b8babf337f12 Diff from another changeset...

 
32
33
34
 
35
36
37
 
32
33
34
35
36
37
38
@@ -32,6 +32,7 @@
    reponame = hglib.get_reponame(repo)   self.setWindowTitle(_('Detect Copies/Renames in %s') % reponame) + self.setWindowFlags(self.windowFlags() & ~Qt.WindowContextHelpButtonHint)     layout = QVBoxLayout()   self.setLayout(layout)
 
26
27
28
 
29
30
31
 
26
27
28
29
30
31
32
@@ -26,6 +26,7 @@
  def __init__(self, parent=None, root=None, *pats):   'Initialize the Dialog'   QDialog.__init__(self, parent) + self.setWindowFlags(self.windowFlags() & ~Qt.WindowContextHelpButtonHint)     try:   repo = hg.repository(ui.ui(), path=paths.find_root(root))
 
304
305
306
 
307
308
309
 
304
305
306
307
308
309
310
@@ -304,6 +304,7 @@
 def fileEditor(filename):   'Open a simple modal file editing dialog'   dialog = QtGui.QDialog() + dialog.setWindowFlags(dialog.windowFlags() & ~QtCore.Qt.WindowContextHelpButtonHint)   vbox = QtGui.QVBoxLayout()   dialog.setLayout(vbox)   editor = qsci()
 
25
26
27
 
28
29
30
 
25
26
27
28
29
30
31
@@ -25,6 +25,7 @@
  """ Dialog for performing quick dirstate operations """   def __init__(self, command, pats, parent=None):   QtGui.QDialog.__init__(self, parent) + self.setWindowFlags(self.windowFlags() & ~QtCore.Qt.WindowContextHelpButtonHint)   self.pats = pats     # Handle rm alias
 
415
416
417
 
418
419
420
 
415
416
417
418
419
420
421
@@ -415,6 +415,7 @@
  def __init__(self, configrepo=False, focus=None, parent=None):   QDialog.__init__(self, parent)   self.setWindowTitle(_('TortoiseHg Settings')) + self.setWindowFlags(self.windowFlags() & ~Qt.WindowContextHelpButtonHint)     try:   root = paths.find_root()