You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
480 B
18 lines
480 B
Index: gtk/util.c
|
|
===================================================================
|
|
--- gtk/util.c (revision 2629)
|
|
+++ gtk/util.c (working copy)
|
|
@@ -319,7 +319,12 @@
|
|
{
|
|
static char * wd = NULL;
|
|
const char * dir = tr_prefs_get( PREF_ID_DIR );
|
|
+
|
|
if (NULL == dir) {
|
|
+#if GLIB_CHECK_VERSION(2, 13, 7)
|
|
+ dir = g_get_user_special_dir(G_USER_DIRECTORY_DOWNLOAD);
|
|
+ return dir;
|
|
+#endif
|
|
if (NULL == wd)
|
|
wd = g_get_current_dir();
|
|
dir = wd;
|