]> granicus.if.org Git - vim/commitdiff
updated for version 7.2-142 v7.2.142
authorBram Moolenaar <Bram@vim.org>
Wed, 18 Mar 2009 11:22:25 +0000 (11:22 +0000)
committerBram Moolenaar <Bram@vim.org>
Wed, 18 Mar 2009 11:22:25 +0000 (11:22 +0000)
src/gui_beval.c
src/version.c

index 7adde4ea544c6175ffce51512d45897ae4c28799..e0d7b9c9e7fef3daada8b08b1ff44ccd15d3c607 100644 (file)
@@ -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);
 
index e9dd27239cbc3c6e252ae4559cde6d1d7308cd34..8ba2de2ff0980ff46e24f2ea08e95bda1a9b1984 100644 (file)
@@ -676,6 +676,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    142,
 /**/
     141,
 /**/