Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.1, 1.1.1, and 1.1.2

shellconf: add UI for enabled overlay handlers

Changeset f327671f7e1a

Parent db41d700cc7a

by Adrian Buehlmann

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

 
126
127
128
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
129
130
131
 
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
@@ -126,6 +126,32 @@
  self.lclonly = gtk.CheckButton(_('Local disks only'))   hbox.pack_start(self.lclonly, False, False, 2)   + ## Overlay icons group + frame = gtk.Frame(_('Enabled Overlay Handlers')) + frame.set_border_width(2) + iconsvbox.pack_start(frame, False, False, 2) + tvbox = gtk.VBox() + frame.add(tvbox) + + hbox = gtk.HBox() + tvbox.pack_start(hbox, False, False, 2) + hbox.pack_start(gtk.Label( + _('(Warning: affects all Tortoises, logoff required after change)')), + False, False, 2) + + hbox = gtk.HBox() + tvbox.pack_start(hbox, False, False, 2) + self.enableUnversionedHandler = gtk.CheckButton(_('Unversioned')) + hbox.pack_start(self.enableUnversionedHandler, False, False, 2) + self.enableReadonlyHandler = gtk.CheckButton(_('Readonly (*)')) + hbox.pack_start(self.enableReadonlyHandler, False, False, 2) + + hbox = gtk.HBox() + tvbox.pack_start(hbox, False, False, 2) + hbox.pack_start(gtk.Label( + _('*: not used by TortoiseHg')), + False, False, 2) +   ## Taskbar group   taskbarframe = gtk.Frame(_('Taskbar'))   taskbarframe.set_border_width(2)