We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2932359 commit 45a2495Copy full SHA for 45a2495
2 files changed
src/gui.c
@@ -4166,7 +4166,7 @@ gui_update_scrollbars(
4166
/* avoid that moving components around generates events */
4167
++hold_gui_events;
4168
4169
- FOR_ALL_WINDOWS(wp)
+ for (wp = firstwin; wp != NULL; wp = W_NEXT(wp))
4170
{
4171
if (wp->w_buffer == NULL) /* just in case */
4172
continue;
src/version.c
@@ -758,6 +758,8 @@ static char *(features[]) =
758
759
static int included_patches[] =
760
{ /* Add new patch number below this line */
761
+/**/
762
+ 2102,
763
/**/
764
2101,
765
0 commit comments