mirror of
https://github.com/transmission/transmission
synced 2024-12-24 16:52:39 +00:00
(gtk) notify: in glib >= 2.16, use g_app_info_launch_default_for_uri() to open the completed torrent.
This commit is contained in:
parent
e4562bcd7b
commit
8ea260af89
1 changed files with 15 additions and 2 deletions
17
gtk/notify.c
17
gtk/notify.c
|
@ -10,6 +10,9 @@
|
||||||
* $Id$
|
* $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#ifdef HAVE_GIO
|
||||||
|
#include <gio/gio.h>
|
||||||
|
#endif
|
||||||
#include <glib/gi18n.h>
|
#include <glib/gi18n.h>
|
||||||
#include "notify.h"
|
#include "notify.h"
|
||||||
|
|
||||||
|
@ -55,8 +58,18 @@ notifyCallback( NotifyNotification * n UNUSED,
|
||||||
|
|
||||||
if( path )
|
if( path )
|
||||||
{
|
{
|
||||||
char * argv[] = { "xdg-open", path, NULL };
|
gboolean opened = FALSE;
|
||||||
g_spawn_async( NULL, argv, NULL, G_SPAWN_SEARCH_PATH, NULL, NULL, NULL, NULL );
|
#ifdef HAVE_GIO
|
||||||
|
GFile * file = g_file_new_for_path( path );
|
||||||
|
char * uri = g_file_get_uri( file );
|
||||||
|
opened = g_app_info_launch_default_for_uri( uri, NULL, NULL );
|
||||||
|
g_free( uri );
|
||||||
|
g_object_unref( G_OBJECT( file ) );
|
||||||
|
#endif
|
||||||
|
if( !opened ) {
|
||||||
|
char * argv[] = { "xdg-open", path, NULL };
|
||||||
|
g_spawn_async( NULL, argv, NULL, G_SPAWN_SEARCH_PATH, NULL, NULL, NULL, NULL );
|
||||||
|
}
|
||||||
g_free( path );
|
g_free( path );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue