Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
23 lines
901 B
Diff
23 lines
901 B
Diff
diff --git a/src/Widgets/BackgroundImage.vala b/src/Widgets/BackgroundImage.vala
|
|
index ae9431c..f0f2a49 100644
|
|
--- a/src/Widgets/BackgroundImage.vala
|
|
+++ b/src/Widgets/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);
|
|
}
|