* xrdb.c (x_load_resources) [!USE_MOTIF]: Put horizontal scroll bar

background value to match the resource of its vertical counterpart.
This commit is contained in:
Dmitry Antipov 2014-07-29 20:38:46 +04:00
parent ca74eaca07
commit 8831a1c043
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2014-07-29 Dmitry Antipov <dmantipov@yandex.ru>
* xrdb.c (x_load_resources) [!USE_MOTIF]: Put horizontal scroll bar
background value to match the resource of its vertical counterpart.
2014-07-29 Martin Rudalics <rudalics@gmx.at>
* frame.c (adjust_frame_size): Use FRAME_WINDOW_P instead of

View file

@ -499,6 +499,8 @@ x_load_resources (Display *display, const char *xrm_string,
XrmPutLineResource (&rdb, line);
sprintf (line, "Emacs*verticalScrollBar.background: grey75");
XrmPutLineResource (&rdb, line);
sprintf (line, "Emacs*horizontalScrollBar.background: grey75");
XrmPutLineResource (&rdb, line);
#endif /* not USE_MOTIF */