summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <sir@cmpwn.com>2017-07-03 15:03:46 -0600
committerLibravatar Drew DeVault <ddevault@vistarmedia.com>2017-07-11 20:08:00 -0400
commit36fcb954bd244007609593e043a9b2d212f486de (patch)
tree943174850b1ce584ad160cfbb62b321de440acb2
parentMerge pull request #1259 from Hummer12007/patch-4 (diff)
downloadsway-36fcb954bd244007609593e043a9b2d212f486de.tar.gz
sway-36fcb954bd244007609593e043a9b2d212f486de.tar.zst
sway-36fcb954bd244007609593e043a9b2d212f486de.zip
Merge pull request #1256 from lheckemann/doc-png
Do not fail silently when background is not PNG
-rw-r--r--swaybg/main.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/swaybg/main.c b/swaybg/main.c
index 9dba0c8f..2fdd4220 100644
--- a/swaybg/main.c
+++ b/swaybg/main.c
@@ -97,6 +97,14 @@ int main(int argc, const char **argv) {
97 if (!image) { 97 if (!image) {
98 sway_abort("Failed to read background image."); 98 sway_abort("Failed to read background image.");
99 } 99 }
100 if (cairo_surface_status(image) != CAIRO_STATUS_SUCCESS) {
101 sway_abort("Failed to read background image: %s."
102#ifndef WITH_GDK_PIXBUF
103 "\nSway was compiled without gdk_pixbuf support, so only"
104 "\nPNG images can be loaded. This is the likely cause."
105#endif //WITH_GDK_PIXBUF
106 , cairo_status_to_string(cairo_surface_status(image)));
107 }
100 double width = cairo_image_surface_get_width(image); 108 double width = cairo_image_surface_get_width(image);
101 double height = cairo_image_surface_get_height(image); 109 double height = cairo_image_surface_get_height(image);
102 110