0
0
mirror of https://github.com/vim/vim.git synced 2025-10-10 06:24:10 -04:00

updated for version 7.2-142

This commit is contained in:
Bram Moolenaar
2009-03-18 11:22:25 +00:00
parent 2bea291af0
commit 8281f44518
2 changed files with 19 additions and 0 deletions

View File

@@ -1291,6 +1291,23 @@ drawBalloon(beval)
XtNy, ty, XtNy, ty,
NULL); NULL);
#endif #endif
/* Set tooltip colors */
{
Arg args[2];
#ifdef FEAT_GUI_MOTIF
args[0].name = XmNbackground;
args[0].value = gui.tooltip_bg_pixel;
args[1].name = XmNforeground;
args[1].value = gui.tooltip_fg_pixel;
#else /* Athena */
args[0].name = XtNbackground;
args[0].value = gui.tooltip_bg_pixel;
args[1].name = XtNforeground;
args[1].value = gui.tooltip_fg_pixel;
#endif
XtSetValues(beval->balloonLabel, &args[0], XtNumber(args));
}
XtPopup(beval->balloonShell, XtGrabNone); XtPopup(beval->balloonShell, XtGrabNone);

View File

@@ -676,6 +676,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
142,
/**/ /**/
141, 141,
/**/ /**/