diff options
| author | jvoisin | 2016-01-03 20:52:17 +0100 |
|---|---|---|
| committer | jvoisin | 2016-01-03 20:52:17 +0100 |
| commit | 7a66ca858e40e827f06ff3054d1b5a2a4217d0f8 (patch) | |
| tree | 4cd54595fba502258f9ff6395c2c32d3b9c8cf26 /mat-gui | |
| parent | e73b82d184774631d960543a8dd4ae623a31f80b (diff) | |
Use GObject types instead of Python ones for the GUI
Diffstat (limited to 'mat-gui')
| -rwxr-xr-x | mat-gui | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -371,7 +371,7 @@ non-anonymised) file to output archive')) | |||
| 371 | sc.add_with_viewport(vbox) | 371 | sc.add_with_viewport(vbox) |
| 372 | 372 | ||
| 373 | dialog.get_content_area().pack_start(sc, True, True, 0) | 373 | dialog.get_content_area().pack_start(sc, True, True, 0) |
| 374 | store = Gtk.ListStore(bool, str) | 374 | store = Gtk.ListStore(GObject.TYPE_BOOLEAN, GObject.TYPE_STRING) |
| 375 | for i in files_list: # store.extend is not supported, wtf?! | 375 | for i in files_list: # store.extend is not supported, wtf?! |
| 376 | store.append([0, os.path.basename(i)]) | 376 | store.append([0, os.path.basename(i)]) |
| 377 | 377 | ||
