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

hgqt/hgtk: use hgqt.shellconf

Changeset 96c524c5b548

Parent 6041e4b76929

by Adrian Buehlmann

Changes to one file · Browse files at 96c524c5b548 Showing diff from parent 6041e4b76929 Diff from another changeset...

 
394
395
396
397
398
 
 
 
 
 
 
399
400
401
 
394
395
396
 
 
397
398
399
400
401
402
403
404
405
@@ -394,8 +394,12 @@
   def shellconfig(ui, *pats, **opts):   """Explorer extension configuration editor""" - from tortoisehg.hgtk.shellconf import run - gtkrun(run, ui, *pats, **opts) + from PyQt4 import QtGui + from tortoisehg.hgqt.shellconf import ShellConfigWindow + app = QtGui.QApplication(sys.argv) + form = ShellConfigWindow() + form.show() + app.exec_()    def rename(ui, *pats, **opts):   """rename a single file or directory"""