comparison src/option.c @ 2362:6cee3bf00495 vim73

When resetting 'mousehide' show the mouse pointer right away.
author Bram Moolenaar <bram@vim.org>
date Tue, 20 Jul 2010 18:44:27 +0200
parents d8e4b27cef80
children 85b7dc8da5eb
comparison
equal deleted inserted replaced
2361:e12685c50982 2362:6cee3bf00495
7486 #ifdef FEAT_TITLE 7486 #ifdef FEAT_TITLE
7487 redraw_titles(); 7487 redraw_titles();
7488 #endif 7488 #endif
7489 } 7489 }
7490 7490
7491 #ifdef FEAT_GUI
7492 else if ((int *)varp == &p_mh)
7493 {
7494 if (!p_mh)
7495 gui_mch_mousehide(FALSE);
7496 }
7497 #endif
7498
7491 #if defined(FEAT_TITLE) || defined(FEAT_CONCEAL) 7499 #if defined(FEAT_TITLE) || defined(FEAT_CONCEAL)
7492 /* when 'modifiable' is changed, redraw the window title and 7500 /* when 'modifiable' is changed, redraw the window title and
7493 * update current line for concealable items */ 7501 * update current line for concealable items */
7494 else if ((int *)varp == &curbuf->b_p_ma) 7502 else if ((int *)varp == &curbuf->b_p_ma)
7495 { 7503 {