From 2fb9308a673dd3104461d2928d1b903c87de86ab Mon Sep 17 00:00:00 2001 From: David Maciejak Date: Tue, 21 Feb 2023 06:19:18 +0800 Subject: [PATCH] Info Panel: Add libXRes info if supported If windowmaker was compiled with libXRes, add XRes info in the "Additional support" section. Take also the chance to remove the mode +x on the source code file. --- src/dialog.c | 4 ++++ 1 file changed, 4 insertions(+) mode change 100755 => 100644 src/dialog.c diff --git a/src/dialog.c b/src/dialog.c old mode 100755 new mode 100644 index 6e3c9700..ff1bd144 --- a/src/dialog.c +++ b/src/dialog.c @@ -1433,6 +1433,10 @@ void wShowInfoPanel(WScreen *scr) strbuf = wstrappend(strbuf, ", XDnD"); #endif +#ifdef USE_XRES + strbuf = wstrappend(strbuf, ", XRes"); +#endif + #ifdef USE_MAGICK strbuf = wstrappend(strbuf, ", ImageMagick"); #endif