From 8831a1c0433996746060e2c07ed4207192977146 Mon Sep 17 00:00:00 2001 From: Dmitry Antipov Date: Tue, 29 Jul 2014 20:38:46 +0400 Subject: [PATCH] * xrdb.c (x_load_resources) [!USE_MOTIF]: Put horizontal scroll bar background value to match the resource of its vertical counterpart. --- src/ChangeLog | 5 +++++ src/xrdb.c | 2 ++ 2 files changed, 7 insertions(+) diff --git a/src/ChangeLog b/src/ChangeLog index 6fae6782f0d..fa3afc3da86 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2014-07-29 Dmitry Antipov + + * 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 * frame.c (adjust_frame_size): Use FRAME_WINDOW_P instead of diff --git a/src/xrdb.c b/src/xrdb.c index 107a8fca4e1..55abd9fd30f 100644 --- a/src/xrdb.c +++ b/src/xrdb.c @@ -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 */ -- 2.39.2