From: Federico Ceratto <federico@debian.org>
Subject: Insert search path for elementary-xfce icons

--- a/src/Application.vala
+++ b/src/Application.vala
@@ -103,6 +103,11 @@
 			StyleContext.add_provider_for_screen (Gdk.Screen.get_default (), css_provider, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION);
 			StyleContext.add_provider_for_screen (Gdk.Screen.get_default (), zoom_css_provider, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION);
 
+			string[] icon_search_path;
+			Gtk.IconTheme.get_default ().get_search_path (out icon_search_path);
+			icon_search_path[0] = "/usr/share/icons/elementary-xfce/status/symbolic";
+			Gtk.IconTheme.get_default ().set_search_path (icon_search_path);
+
 			set_accels_for_action ("app.about", ACCEL_ABOUT);
 			set_accels_for_action ("app.compose", ACCEL_NEW_POST);
 			set_accels_for_action ("app.back", ACCEL_BACK);
