]> git.eshelyaron.com Git - emacs.git/commitdiff
* xrdb.c (x_load_resources) [!USE_MOTIF]: Put horizontal scroll bar
authorDmitry Antipov <dmantipov@yandex.ru>
Tue, 29 Jul 2014 16:38:46 +0000 (20:38 +0400)
committerDmitry Antipov <dmantipov@yandex.ru>
Tue, 29 Jul 2014 16:38:46 +0000 (20:38 +0400)
background value to match the resource of its vertical counterpart.

src/ChangeLog
src/xrdb.c

index 6fae6782f0d0831011f382573ee4f8b0df38d1f1..fa3afc3da865ddee8884870547db54623664e5de 100644 (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
index 107a8fca4e1c80ae3c5a1e0ea5158ccbbc67f6db..55abd9fd30fefcd57c7e3dc343eeff9baa81480e 100644 (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 */