| To: vim_dev@googlegroups.com |
| Subject: Patch 7.3.762 |
| Fcc: outbox |
| From: Bram Moolenaar <Bram@moolenaar.net> |
| Mime-Version: 1.0 |
| Content-Type: text/plain; charset=UTF-8 |
| Content-Transfer-Encoding: 8bit |
| |
| |
| Patch 7.3.762 (after 7.3.759) |
| Problem: On some systems the tabline is not redrawn. |
| Solution: Call RedrawWindow(). (Charles Peacech) |
| Files: src/gui_w48.c |
| |
| |
| |
| |
| |
| *** 2527,2534 **** |
| if (TabCtrl_GetCurSel(s_tabhwnd) != curtabidx) |
| TabCtrl_SetCurSel(s_tabhwnd, curtabidx); |
| |
| ! /* Re-enable redraw. This should trigger a repaint. */ |
| SendMessage(s_tabhwnd, WM_SETREDRAW, (WPARAM)TRUE, 0); |
| } |
| |
| /* |
| --- 2527,2536 ---- |
| if (TabCtrl_GetCurSel(s_tabhwnd) != curtabidx) |
| TabCtrl_SetCurSel(s_tabhwnd, curtabidx); |
| |
| ! /* Re-enable redraw and redraw. */ |
| SendMessage(s_tabhwnd, WM_SETREDRAW, (WPARAM)TRUE, 0); |
| + RedrawWindow(s_tabhwnd, NULL, NULL, |
| + RDW_ERASE | RDW_FRAME | RDW_INVALIDATE | RDW_ALLCHILDREN); |
| } |
| |
| /* |
| |
| |
| |
| *** 727,728 **** |
| --- 727,730 ---- |
| { /* Add new patch number below this line */ |
| + /**/ |
| + 762, |
| /**/ |
| |
| -- |
| "The question of whether computers can think is just like the question |
| of whether submarines can swim." -- Edsger W. Dijkstra |
| |
| /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ |
| /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ |
| \\\ an exciting new programming language -- http://www.Zimbu.org /// |
| \\\ help me help AIDS victims -- http://ICCF-Holland.org /// |