summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmat-gui6
1 files changed, 3 insertions, 3 deletions
diff --git a/mat-gui b/mat-gui
index f1a6157..e681145 100755
--- a/mat-gui
+++ b/mat-gui
@@ -292,7 +292,7 @@ class GUI:
292 292
293 cf = CFile(filename, self.backup, self.add2archive) 293 cf = CFile(filename, self.backup, self.add2archive)
294 if cf.file is not None: # if the file is supported by the mat 294 if cf.file is not None: # if the file is supported by the mat
295 self.liststore.append([cf, os.path.dirname(cf.file.filename), 295 self.liststore.append([cf, os.path.dirname(cf.file.filename) + os.path.sep,
296 cf.file.basename, cf.file.mime, _('unknow'), 'None']) 296 cf.file.basename, cf.file.mime, _('unknow'), 'None'])
297 return False 297 return False
298 else: 298 else:
@@ -314,7 +314,7 @@ class GUI:
314 iterator = self.liststore[row][0].file.get_meta().iteritems() 314 iterator = self.liststore[row][0].file.get_meta().iteritems()
315 for i, j in iterator: 315 for i, j in iterator:
316 name = '-<b>' + str(i) + '</b> : ' 316 name = '-<b>' + str(i) + '</b> : '
317 meta += ('\n' + name + str(j)) 317 meta += (name + str(j) + '\n')
318 318
319 w = gtk.MessageDialog(self.window, 319 w = gtk.MessageDialog(self.window,
320 gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT, 320 gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT,
@@ -493,7 +493,7 @@ non-anonymised) file to output archive'))
493 for line in xrange(len(self.liststore)): 493 for line in xrange(len(self.liststore)):
494 # change the "backup" property of all files 494 # change the "backup" property of all files
495 self.liststore[line][0].file.backup = self.backup 495 self.liststore[line][0].file.backup = self.backup
496 self.treeview.get_column(3).set_visible(self.backup) 496 self.treeview.get_column(4).set_visible(self.backup)
497 elif name == 'add2archive': 497 elif name == 'add2archive':
498 self.add2archive = not self.add2archive 498 self.add2archive = not self.add2archive
499 499