summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/gui_x11.c7
-rw-r--r--src/version.c2
2 files changed, 5 insertions, 4 deletions
diff --git a/src/gui_x11.c b/src/gui_x11.c
index f09d1a0c36..ed71b26ce8 100644
--- a/src/gui_x11.c
+++ b/src/gui_x11.c
@@ -1503,14 +1503,13 @@ gui_mch_init()
if (XGetIconSizes(XtDisplay(vimShell), root_window,
&size, &number_sizes) != 0)
{
-
if (number_sizes > 0)
{
- if (size->max_height >= 48 && size->max_height >= 48)
+ if (size->max_height >= 48 && size->max_width >= 48)
magick = vim48x48;
- else if (size->max_height >= 32 && size->max_height >= 32)
+ else if (size->max_height >= 32 && size->max_width >= 32)
magick = vim32x32;
- else if (size->max_height >= 16 && size->max_height >= 16)
+ else if (size->max_height >= 16 && size->max_width >= 16)
magick = vim16x16;
}
}
diff --git a/src/version.c b/src/version.c
index 59e67432cb..d8c9cc271d 100644
--- a/src/version.c
+++ b/src/version.c
@@ -728,6 +728,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 24,
+/**/
23,
/**/
22,