File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -1503,14 +1503,13 @@ gui_mch_init()
15031503 if (XGetIconSizes (XtDisplay (vimShell ), root_window ,
15041504 & size , & number_sizes ) != 0 )
15051505 {
1506-
15071506 if (number_sizes > 0 )
15081507 {
1509- if (size -> max_height >= 48 && size -> max_height >= 48 )
1508+ if (size -> max_height >= 48 && size -> max_width >= 48 )
15101509 magick = vim48x48 ;
1511- else if (size -> max_height >= 32 && size -> max_height >= 32 )
1510+ else if (size -> max_height >= 32 && size -> max_width >= 32 )
15121511 magick = vim32x32 ;
1513- else if (size -> max_height >= 16 && size -> max_height >= 16 )
1512+ else if (size -> max_height >= 16 && size -> max_width >= 16 )
15141513 magick = vim16x16 ;
15151514 }
15161515 }
Original file line number Diff line number Diff line change @@ -727,6 +727,8 @@ static char *(features[]) =
727727
728728static int included_patches [] =
729729{ /* Add new patch number below this line */
730+ /**/
731+ 24 ,
730732/**/
731733 23 ,
732734/**/
You can’t perform that action at this time.
0 commit comments