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

stable status: fix 'save as' patch feature, in revision range mode

Fixes #456

Changeset bb3da37d0d83

Parent f6ffe31b2bd0

by Steve Borho

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

Change 1 of 1 Show Entire File hggtk/​status.py Stacked
 
1055
1056
1057
1058
1059
1060
 
 
 
 
 
 
1061
1062
1063
 
1055
1056
1057
 
 
 
1058
1059
1060
1061
1062
1063
1064
1065
1066
@@ -1055,9 +1055,12 @@
  if not row[FM_CHECKED]:   continue   wfile = row[FM_PATH] - if wfile not in self.filechunks: - continue - chunks = self.filechunks[wfile] + if wfile in self.filechunks: + chunks = self.filechunks[wfile] + else: + chunks = self.read_file_chunks(wfile) + for c in chunks: + c.active = True   for i, chunk in enumerate(chunks):   if i == 0:   chunk.write(buf)