Flatpak Runtime crash fix.
The application was trying to register a name different than the one declared in the flatpak manifest. Changin the name to org.gnome.Hammond like on manifest should fix it.
This commit is contained in:
parent
e2214022b9
commit
b042205a3b
@ -111,10 +111,8 @@ fn main() {
|
||||
static_resource::init().expect("Something went wrong with the resource file initialization.");
|
||||
hammond_data::init().expect("Hammond Initialazation failed.");
|
||||
|
||||
let application = gtk::Application::new(
|
||||
"com.gitlab.alatiera.Hammond",
|
||||
gio::ApplicationFlags::empty(),
|
||||
).expect("Initialization failed...");
|
||||
let application = gtk::Application::new("org.gnome.Hammond", gio::ApplicationFlags::empty())
|
||||
.expect("Initialization failed...");
|
||||
|
||||
application.connect_startup(move |app| {
|
||||
build_ui(app);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user