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

status: move 'copy-clipboard' signal connect() call into chunks.py

Changeset 80b0e6d13f12

Parent b99972a4512b

by Adrian Buehlmann

Changes to 2 files · Browse files at 80b0e6d13f12 Showing diff from parent b99972a4512b Diff from another changeset...

 
104
105
106
 
107
108
109
 
104
105
106
107
108
109
110
@@ -104,6 +104,7 @@
  difftree.set_property('enable-grid-lines', True)     difftree.connect('row-activated', self.diff_tree_row_act) + difftree.connect('copy-clipboard', self.copy_to_clipboard)     cell = gtk.CellRendererText()   diffcol = gtk.TreeViewColumn('diff', cell)
 
174
175
176
177
178
179
 
180
181
182
 
174
175
176
 
 
 
177
178
179
180
@@ -174,9 +174,7 @@
  self.connect('thg-refresh', self.thgrefresh)     # set CTRL-c accelerator for copy-clipboard - dt = self.chunks.difftree() - gtklib.add_accelerator(dt, 'copy-clipboard', accelgroup, mod+'c') - dt.connect('copy-clipboard', self.chunks.copy_to_clipboard) + gtklib.add_accelerator(self.chunks.difftree(), 'copy-clipboard', accelgroup, mod+'c')     def scroll_diff_notebook(widget, direction=gtk.SCROLL_PAGE_DOWN):   page_num = self.diff_notebook.get_current_page()