1
0
forked from aniani/vim

patch 8.2.4550: Motif: cannot set the color of the scrollbar thumb

Problem:    Motif: cannot set the color of the scrollbar thumb.
Solution:   Remove #ifdef.
This commit is contained in:
Bram Moolenaar
2022-03-12 12:21:28 +00:00
parent e2adcf3974
commit 5b4f8a0e84
2 changed files with 2 additions and 2 deletions

View File

@@ -1906,9 +1906,7 @@ gui_mch_set_scrollbar_colors(scrollbar_T *sb)
if (gui.scroll_fg_pixel != INVALCOLOR)
XtVaSetValues(sb->id,
XmNforeground, gui.scroll_fg_pixel,
#if (XmVersion<1002)
XmNbackground, gui.scroll_fg_pixel,
#endif
NULL);
}