* xrdb.c (x_load_resources) [USE_MOTIF]: Although not strictly

necessary, put horizontal scroll bar resources as well.  See
<http://lists.gnu.org/archive/html/emacs-devel/2014-07/msg00430.html>.
This commit is contained in:
Dmitry Antipov 2014-07-30 07:41:56 +04:00
parent 8831a1c043
commit 173a45a089
2 changed files with 10 additions and 0 deletions

View file

@ -1,3 +1,9 @@
2014-07-30 Dmitry Antipov <dmantipov@yandex.ru>
* xrdb.c (x_load_resources) [USE_MOTIF]: Although not strictly
necessary, put horizontal scroll bar resources as well. See
<http://lists.gnu.org/archive/html/emacs-devel/2014-07/msg00430.html>.
2014-07-29 Dmitry Antipov <dmantipov@yandex.ru>
* xrdb.c (x_load_resources) [!USE_MOTIF]: Put horizontal scroll bar

View file

@ -452,6 +452,10 @@ x_load_resources (Display *display, const char *xrm_string,
XrmPutLineResource (&rdb, line);
sprintf (line, "%s*verticalScrollBar.troughColor: grey75", myclass);
XrmPutLineResource (&rdb, line);
sprintf (line, "%s*horizontalScrollBar.background: grey75", myclass);
XrmPutLineResource (&rdb, line);
sprintf (line, "%s*horizontalScrollBar.troughColor: grey75", myclass);
XrmPutLineResource (&rdb, line);
sprintf (line, "%s.dialog*.background: grey75", myclass);
XrmPutLineResource (&rdb, line);
sprintf (line, "%s*fsb.Text.background: white", myclass);