Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.9, 0.9.1, and 0.9.1.1

stable csinfo: support 'selectable' option on ChangesetPanel

Changeset 3e76a3cca826

Parent cebba583fe5a

by Yuki KODAMA

Changes to one file · Browse files at 3e76a3cca826 Showing diff from parent cebba583fe5a Diff from another changeset...

 
328
329
330
 
 
 
331
332
333
 
339
340
341
 
342
343
344
 
328
329
330
331
332
333
334
335
336
 
342
343
344
345
346
347
348
@@ -328,6 +328,9 @@
  contents = self.csstyle.get('contents', None)   assert contents   + sel = self.csstyle.get('selectable', False) + assert isinstance(sel, bool) +   # build info   self.table.clear_rows()   for item in contents: @@ -339,6 +342,7 @@
  for text in markups:   body = gtk.Label()   body.set_markup(text) + body.set_selectable(sel)   self.table.add_row(self.get_label(item), body)   self.show_all()