summaryrefslogtreecommitdiff
path: root/mat-gui
diff options
context:
space:
mode:
authorjvoisin2011-09-20 10:55:51 +0200
committerjvoisin2011-09-20 10:55:51 +0200
commitea2fce7e6671f6b988ab012be0a08cce9cf9ca17 (patch)
treeaaf3ec4dca4cf1d690315e2bdb8a8fc13d185f23 /mat-gui
parent2ea93fa89d993922d8435736a04d8018f18ed38e (diff)
Proper handling of the "backup" state of already-added files
Diffstat (limited to 'mat-gui')
-rwxr-xr-xmat-gui3
1 files changed, 3 insertions, 0 deletions
diff --git a/mat-gui b/mat-gui
index 79807b2..e19ac17 100755
--- a/mat-gui
+++ b/mat-gui
@@ -436,6 +436,9 @@ non-anonymised) file to output archive'))
436 self.force = not self.force 436 self.force = not self.force
437 elif name == 'backup': 437 elif name == 'backup':
438 self.backup = not self.backup 438 self.backup = not self.backup
439 for line in xrange(len(self.liststore)):
440 # change the "backup" property of all files
441 self.liststore[line][0].file.backup = self.backup
439 self.treeview.get_column(3).set_visible(self.backup) 442 self.treeview.get_column(3).set_visible(self.backup)
440 elif name == 'add2archive': 443 elif name == 'add2archive':
441 self.add2archive = not self.add2archive 444 self.add2archive = not self.add2archive