[epiphany/gnome-3-0] popup-commands: make 'Use picture as background' work again



commit 8b1de7dc3113a4d33c93181924dc5d5c5d71c760
Author: Xan Lopez <xlopez igalia com>
Date:   Sat Jun 25 04:16:47 2011 +0200

    popup-commands: make 'Use picture as background' work again
    
    Things are done differently in GNOME3.
    
    Bug #647604

 src/popup-commands.c |   29 +++++++----------------------
 1 files changed, 7 insertions(+), 22 deletions(-)
---
diff --git a/src/popup-commands.c b/src/popup-commands.c
index e7064f1..3255da8 100644
--- a/src/popup-commands.c
+++ b/src/popup-commands.c
@@ -26,6 +26,7 @@
 #include "ephy-embed-container.h"
 #include "ephy-embed-utils.h"
 #include "ephy-prefs.h"
+#include "ephy-settings.h"
 #include "ephy-file-helpers.h"
 #include "ephy-file-chooser.h"
 #include "ephy-bookmarks-ui.h"
@@ -296,32 +297,16 @@ popup_cmd_save_image_as (GtkAction *action,
 			   window, TRUE, "image-uri");
 }
 
-#define GNOME_APPEARANCE_PROPERTIES  "gnome-appearance-properties.desktop"
-
 static void
 background_download_completed (EphyDownload *download,
 			       GtkWidget *window)
 {
-	char *bg;
-	guint32 user_time;
-
-	user_time = ephy_download_get_start_time (download);
+	const char *uri;
+	GSettings *settings;
 
-	bg = g_filename_from_uri (ephy_download_get_destination_uri (download), NULL, NULL);
-
-	/* open the Appearance Properties capplet on the Background tab */
-	if (!ephy_file_launch_desktop_file (GNOME_APPEARANCE_PROPERTIES, bg, user_time, window))
-	{
-		/* Fallback for <= 2.18 desktop: try to open the "Background Properties" capplet */
-		if (!ephy_file_launch_desktop_file ("background.desktop", bg, user_time, window))
-		{
-			/* If the above try didn't work, then we try the Fedora name.
-			 * This is a fix for #387206, but is actually a workaround for
-			 * bugzilla.redhat.com #201867 */
-			ephy_file_launch_desktop_file ("gnome-background.desktop", bg, user_time, window);
-		}
-	}
-	g_free (bg);
+	uri = ephy_download_get_destination_uri (download);
+	settings = ephy_settings_get ("org.gnome.desktop.background");
+	g_settings_set_string (settings, "picture-uri", uri);
 }
 
 void
@@ -345,7 +330,7 @@ popup_cmd_set_image_as_background (GtkAction *action,
 
 	base = g_path_get_basename (location);
 	base_converted = g_filename_from_utf8 (base, -1, NULL, NULL, NULL);
-	dest = g_build_filename (ephy_dot_dir (), base_converted, NULL);
+	dest = g_build_filename (g_get_home_dir (), "Pictures", base_converted, NULL);
 	dest_uri = g_filename_to_uri (dest, NULL, NULL);
 
 	ephy_download_set_destination_uri (download, dest_uri);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]