pantheon.elementary-greeter: hardcode fallback wallpaper

Workaround https://github.com/elementary/greeter/issues/360
This commit is contained in:
worldofpeace
2019-09-27 16:06:59 -04:00
parent 28a7e8fb75
commit 55e9675187
2 changed files with 28 additions and 0 deletions
@@ -0,0 +1,22 @@
diff --git a/src/Cards/BackgroundImage.vala b/src/Cards/BackgroundImage.vala
index b57fb4d..ddfd56c 100644
--- a/src/Cards/BackgroundImage.vala
+++ b/src/Cards/BackgroundImage.vala
@@ -9,7 +9,7 @@ public class Greeter.BackgroundImage : Gtk.EventBox {
public BackgroundImage (string? path) {
if (path == null) {
- path = "/usr/share/backgrounds/elementaryos-default";
+ path = "@default_wallpaper@";
}
try {
@@ -19,7 +19,7 @@ public class Greeter.BackgroundImage : Gtk.EventBox {
critical ("Fallback to default wallpaper");
try {
- full_pixbuf = new Gdk.Pixbuf.from_file ("/usr/share/backgrounds/elementaryos-default");
+ full_pixbuf = new Gdk.Pixbuf.from_file ("@default_wallpaper");
} catch (GLib.Error e) {
critical (e.message);
}