summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDmitry Antipov <dmantipov@yandex.ru>2014-07-30 07:41:56 +0400
committerDmitry Antipov <dmantipov@yandex.ru>2014-07-30 07:41:56 +0400
commit173a45a0895fa70ec77312764ecb7af5e3391134 (patch)
tree486d3233f15e05fc3375d5586d094b58697f1e06 /src
parent8831a1c0433996746060e2c07ed4207192977146 (diff)
downloademacs-173a45a0895fa70ec77312764ecb7af5e3391134.tar.gz
* 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>.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog6
-rw-r--r--src/xrdb.c4
2 files changed, 10 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index fa3afc3da86..510b2a836ce 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -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
diff --git a/src/xrdb.c b/src/xrdb.c
index 55abd9fd30f..32ad3c7f01e 100644
--- a/src/xrdb.c
+++ b/src/xrdb.c
@@ -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);