Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 0.7, 0.7.1, and 0.7.2

status: do not steal ctrl-c events from other widgets

Changeset 3025747aaf2b

Parent c1aec97f2463

by Steve Borho

Changes to one file · Browse files at 3025747aaf2b Showing diff from parent c1aec97f2463 Diff from another changeset...

Change 1 of 1 Show Entire File hggtk/​status.py Stacked
 
411
412
413
 
 
 
414
415
416
 
411
412
413
414
415
416
417
418
419
@@ -411,6 +411,9 @@
    def copy_to_clipboard(self, treeview):   'Write highlighted hunks to the clipboard' + if not treeview.is_focus(): + # ignore ctrl-c not directed at treeview + return False   model, paths = treeview.get_selection().get_selected_rows()   cids = [ model[row][DM_CHUNK_ID] for row, in paths ]   headers = {}