Now allows to add subtitles to the list

Added the new pictures for scaling
This commit is contained in:
Sergio Costas 2014-07-18 00:44:57 +02:00
parent 581cf07458
commit 0d6d0bd152
17 changed files with 1262 additions and 692 deletions

View file

@ -278,6 +278,11 @@ class interface_manager(GObject.GObject):
for element in self.interface_lists:
exec('self.'+element+' = []')
the_liststore = builder.get_object(element)
ncolumns = the_liststore.get_n_columns()
for row in the_liststore:
exec('self.'+element+'.append(row.model[row.iter])')
final_row = []
for c in range(0,ncolumns):
final_row.append(row.model[row.iter][c])
print (final_row)
exec('self.'+element+'.append(final_row)')