From 8281f445186de469b9466d119c840d7ccdedfe87 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Wed, 18 Mar 2009 11:22:25 +0000 Subject: [PATCH] updated for version 7.2-142 --- src/gui_beval.c | 17 +++++++++++++++++ src/version.c | 2 ++ 2 files changed, 19 insertions(+) diff --git a/src/gui_beval.c b/src/gui_beval.c index 7adde4ea54..e0d7b9c9e7 100644 --- a/src/gui_beval.c +++ b/src/gui_beval.c @@ -1291,6 +1291,23 @@ drawBalloon(beval) XtNy, ty, NULL); #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); diff --git a/src/version.c b/src/version.c index e9dd27239c..8ba2de2ff0 100644 --- a/src/version.c +++ b/src/version.c @@ -676,6 +676,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 142, /**/ 141, /**/