Now uses GLib for DBus communication instead of python-dbus

Now checks the file limit in DVD projects
This commit is contained in:
Sergio Costas 2014-08-06 16:34:31 +02:00
parent cc4039df9c
commit ec4829812a
4 changed files with 25 additions and 15 deletions

View file

@ -36,12 +36,13 @@ class message_window:
wmessage_text.set_markup(text)
wmessage_list = builder.get_object("list_message")
wmessage_liststore = builder.get_object("liststore_elements")
wmessage_window.show_all()
if (list_data == None):
wmessage_list.hide()
else:
for element in list_data:
wmessage_liststore.append([element])
wmessage_window.show_all()
wmessage_window.run()
wmessage_window.destroy()