summaryrefslogtreecommitdiff
path: root/mat-gui
diff options
context:
space:
mode:
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 7c6f2ff..b618e8f 100755
--- a/mat-gui
+++ b/mat-gui
@@ -380,6 +380,9 @@ non-anonymised) file to output archive'))
380 cellrenderer_toggle = Gtk.CellRendererToggle() 380 cellrenderer_toggle = Gtk.CellRendererToggle()
381 column_toggle.pack_start(cellrenderer_toggle, True) 381 column_toggle.pack_start(cellrenderer_toggle, True)
382 column_toggle.add_attribute(cellrenderer_toggle, "active", 0) 382 column_toggle.add_attribute(cellrenderer_toggle, "active", 0)
383 def cell_toggled(widget, path, model):
384 model[path][0] = not model[path][0]
385 cellrenderer_toggle.connect("toggled", cell_toggled, store)
383 386
384 vbox.pack_start(treeview, True, True, 0) 387 vbox.pack_start(treeview, True, True, 0)
385 vbox.pack_start(Gtk.Label(_('Thoses files are not recognized by MAT, and' 388 vbox.pack_start(Gtk.Label(_('Thoses files are not recognized by MAT, and'