src: use the same application ID for remote-viewer and virt-viewer

Gtk uses the application ID to lookup resource entries compiled into the
application. The application ID must match the path in the gresource.xml
file for this to work correctly.

Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
Daniel P. Berrangé 2021-02-19 13:12:02 +00:00 committed by Daniel P. Berrangé
parent 23a6ee68d8
commit 5b44064b35

View File

@ -226,7 +226,7 @@ RemoteViewer *
remote_viewer_new(void)
{
return g_object_new(REMOTE_VIEWER_TYPE,
"application-id", "org.virt-manager.remote-viewer",
"application-id", "org.virt-manager.virt-viewer",
"flags", G_APPLICATION_NON_UNIQUE,
NULL);
}