aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2001-03-28 12:45:54 +0000
committerGerd Moellmann2001-03-28 12:45:54 +0000
commit84f68fd5d09c25344b1ee46ff1f3c5e34ae990f4 (patch)
tree0c22655b1ce12f6797f6127c95001767a5bf6212 /src
parent2b8f2f464dc55199227c9fe15b2ec70a9469d118 (diff)
downloademacs-84f68fd5d09c25344b1ee46ff1f3c5e34ae990f4.tar.gz
emacs-84f68fd5d09c25344b1ee46ff1f3c5e34ae990f4.zip
(realize_basic_faces): Decrement menu_face_change_count
instead of setting it to zero; it's incremented for each frame where the menu face is changed.
Diffstat (limited to 'src')
-rw-r--r--src/xfaces.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfaces.c b/src/xfaces.c
index 9384ba6cfdb..d3c99b30016 100644
--- a/src/xfaces.c
+++ b/src/xfaces.c
@@ -5974,7 +5974,7 @@ realize_basic_faces (f)
5974 /* Reflect changes in the `menu' face in menu bars. */ 5974 /* Reflect changes in the `menu' face in menu bars. */
5975 if (menu_face_change_count) 5975 if (menu_face_change_count)
5976 { 5976 {
5977 menu_face_change_count = 0; 5977 --menu_face_change_count;
5978#ifdef USE_X_TOOLKIT 5978#ifdef USE_X_TOOLKIT
5979 x_update_menu_appearance (f); 5979 x_update_menu_appearance (f);
5980#endif 5980#endif