Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Description: Make looking up Desktop folder fall back to home folder
- This patch makes looking up Desktop folder fall back to home folder
- if Desktop folder is not specified in xdg-user-dirs.
- Author: Sergey "Shnatsel" Davidoff <sergey@elementaryos.org>
- Bug-elementary: https://bugs.launchpad.net/elementaryos/+bug/1088260
- ---
- The information above should follow the Patch Tagging Guidelines, please
- checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
- are templates for supplementary fields that you might want to add:
- Origin: <vendor|upstream|other>, <url of original patch>
- Bug: <url in upstream bugtracker>
- Bug-Debian: http://bugs.debian.org/<bugnumber>
- Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
- Forwarded: <no|not-needed|url proving that it has been forwarded>
- Reviewed-By: <name and email of someone who approved the patch>
- Last-Update: <YYYY-MM-DD>
- --- glib2.0-2.32.3.orig/glib/gutils.c
- +++ glib2.0-2.32.3/glib/gutils.c
- @@ -1784,7 +1784,7 @@ g_get_user_special_dir (GUserDirectory d
- g_get_any_init ();
- g_user_special_dirs[G_USER_DIRECTORY_DESKTOP] =
- - g_build_filename (g_home_dir, "Desktop", NULL);
- + g_build_filename (g_home_dir, NULL);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement