Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.8, 0.8.1, and 0.8.2

thgconfig: add supported applications to shell ext page

Changeset 8f2068f5cb52

Parent 668f727ca6ab

by Steve Borho

Changes to one file · Browse files at 8f2068f5cb52 Showing diff from parent 668f727ca6ab Diff from another changeset...

 
443
444
445
 
 
 
 
 
 
 
 
 
446
447
448
 
502
503
504
 
 
 
 
 
505
506
507
 
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
 
511
512
513
514
515
516
517
518
519
520
521
@@ -443,6 +443,15 @@
  'Fill special tab for shell extension configurations'   vbox = gtk.VBox()   frame.add(vbox) + + # Text entry for supported applications + hbox = gtk.HBox() + vbox.pack_start(hbox, False, False, 2) + lbl = gtk.Label(_('Supported applications:')) + hbox.pack_start(lbl, False, False, 10) + self.shellapps = gtk.Entry() + hbox.pack_start(self.shellapps, True, True, 10) +   ovframe = gtk.Frame(_('Overlay configuration'))   ovframe.set_border_width(10)   vbox.pack_start(ovframe, False, False, 2) @@ -502,6 +511,11 @@
  check.connect('focus-in-event', self.set_help,   desctext.get_buffer(), tooltip)   + tooltip = _('A comma (,) separated list of applications that' + ' the shell extensions will support. If unspecified,' + ' the default is explorer.exe') + self.shellapps.connect('focus-in-event', self.set_help, + desctext.get_buffer(), tooltip)   tooltip = _('Enable/Disable the overlay icons globally')   self.ovenable.connect('focus-in-event', self.set_help,   desctext.get_buffer(), tooltip)