Simply putting the ui file together with the main py file and telling gtk.builder to load it using self.builder.add_from_file('ui.glade')
obviously isn't cutting it.
It's telling me GLib.Error: g-file-error-quark: Failed to open file 'ui.glade': No such file or directory (4)
I'm assuming this is due to Builder running the project from another temporary directory, hence why it's unable to find the glade file.
My question is, how can I tell Builder to load the glade file together with the rest of the project? Or do I have to put the glade file somewhere "permanent" and then hard-code the path to it?