diff -Nru exo-0.12.11/debian/changelog exo-0.12.11/debian/changelog --- exo-0.12.11/debian/changelog 2020-04-15 18:17:28.000000000 -0400 +++ exo-0.12.11/debian/changelog 2021-03-14 08:32:12.000000000 -0400 @@ -1,3 +1,10 @@ +exo (0.12.11-1ubuntu1.20.10.1) groovy-proposed; urgency=medium + + * d/patches/lp1874954.patch: + - Allow resizing the xfce4-settings window smaller (LP: #1874954) + + -- Sean Davis Sun, 14 Mar 2021 08:32:12 -0400 + exo (0.12.11-1ubuntu1) focal; urgency=medium * d/rules: Update sed rule to replace all occurrences, not just the first. diff -Nru exo-0.12.11/debian/patches/lp1874954.patch exo-0.12.11/debian/patches/lp1874954.patch --- exo-0.12.11/debian/patches/lp1874954.patch 1969-12-31 19:00:00.000000000 -0500 +++ exo-0.12.11/debian/patches/lp1874954.patch 2021-03-14 08:31:23.000000000 -0400 @@ -0,0 +1,35 @@ +Description: Allow resizing the xfce4-settings window smaller +Forwarded: not-needed +Origin: upstream, https://gitlab.xfce.org/xfce/exo/-/commit/b41b65612085a145622d23207b810e9cbb40e3cb +Bug: https://gitlab.xfce.org/xfce/exo/-/issues/19 +Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/exo/+bug/1874954 +Author: Theo Linkspfeifer +Last-Update: 2021-03-14 + +--- + exo/exo-icon-view.c | 7 +++++-- + 1 file changed, 5 insertions(+), 2 deletions(-) + +--- a/exo/exo-icon-view.c ++++ b/exo/exo-icon-view.c +@@ -1768,7 +1768,9 @@ + GList *lp; + + /* well, this is easy */ +- *minimal_width = *natural_width = priv->width; ++ if (priv->item_width < 0) ++ *minimal_width = priv->width; ++ *natural_width = priv->width; + + /* handle the child widgets */ + for (lp = priv->children; lp != NULL; lp = lp->next) +@@ -1790,7 +1792,8 @@ + GList *lp; + + /* well, this is easy */ +- *natural_height = *minimal_height = priv->height; ++ *minimal_height = priv->height; ++ *natural_height = priv->height; + + /* handle the child widgets */ + for (lp = priv->children; lp != NULL; lp = lp->next) diff -Nru exo-0.12.11/debian/patches/series exo-0.12.11/debian/patches/series --- exo-0.12.11/debian/patches/series 2019-12-30 11:13:55.000000000 -0500 +++ exo-0.12.11/debian/patches/series 2021-03-14 08:26:01.000000000 -0400 @@ -1 +1,2 @@ 0001-use-u-b-perl-instead-of-env-as-interpreter-path.patch +lp1874954.patch