From: Colin Clark Date: Fri, 28 Jan 2022 10:17:04 +0000 (+0000) Subject: Bug fix: Open archive not working X-Git-Tag: gtk2final~58 X-Git-Url: http://geeqie.org/cgi-bin/gitweb.cgi?p=geeqie.git;a=commitdiff_plain;h=d3d59ed1080795af43b892d7b49f160f358c6be7 Bug fix: Open archive not working Open archive does not work if a default layout has not been set. --- diff --git a/src/layout.c b/src/layout.c index 5b08d51b..d72421f0 100644 --- a/src/layout.c +++ b/src/layout.c @@ -3090,7 +3090,7 @@ LayoutWindow *layout_new_from_default() } else { - layout_new_from_config(NULL, NULL, TRUE); + lw = layout_new_from_config(NULL, NULL, TRUE); } return lw; }