summaryrefslogtreecommitdiff
path: root/lwlib
diff options
context:
space:
mode:
authorPavel Janík <Pavel@Janik.cz>2002-05-07 05:22:29 +0000
committerPavel Janík <Pavel@Janik.cz>2002-05-07 05:22:29 +0000
commit2e8057cd47c27b018927f4cc3f6747faad521442 (patch)
tree685be0de15cfa8c9da8206a36abb45f743224a5d /lwlib
parent7754db183415972d14edaf1cfdbbb33268ccb6cb (diff)
downloademacs-2e8057cd47c27b018927f4cc3f6747faad521442.tar.gz
(make_drawing_gcs): The scaling factor passed to
`x_alloc_lighter_color_for_widget' is a float, not an int, and it's a multiplicative factor, so the name `delta' is inaccurate. Always base disabled foreground on the normal foreground. Don't use the temporary variable `temp'.
Diffstat (limited to 'lwlib')
-rw-r--r--lwlib/xlwmenu.c19
1 files changed, 6 insertions, 13 deletions
diff --git a/lwlib/xlwmenu.c b/lwlib/xlwmenu.c
index e712ed80717..b33c35ea5ad 100644
--- a/lwlib/xlwmenu.c
+++ b/lwlib/xlwmenu.c
@@ -1455,8 +1455,7 @@ make_drawing_gcs (mw)
XlwMenuWidget mw;
{
XGCValues xgcv;
- XColor temp;
- int delta;
+ float scale;
xgcv.font = mw->menu.font->fid;
xgcv.foreground = mw->menu.foreground;
@@ -1478,23 +1477,17 @@ make_drawing_gcs (mw)
#define BRIGHTNESS(color) (((color) & 0xff) + (((color) >> 8) & 0xff) + (((color) >> 16) & 0xff))
/* Allocate color for disabled menu-items. */
+ mw->menu.disabled_foreground = mw->menu.foreground;
if (BRIGHTNESS(mw->menu.foreground) < BRIGHTNESS(mw->core.background_pixel))
- {
- delta = 2.3;
- temp.pixel = mw->menu.foreground;
- }
+ scale = 2.3;
else
- {
- delta = 1.2;
- temp.pixel = mw->core.background_pixel;
- }
+ scale = 0.55;
x_alloc_lighter_color_for_widget ((Widget) mw, XtDisplay ((Widget) mw),
mw->core.colormap,
- &temp.pixel,
- delta,
+ &mw->menu.disabled_foreground,
+ scale,
0x8000);
- mw->menu.disabled_foreground = temp.pixel;
if (mw->menu.foreground == mw->menu.disabled_foreground
|| mw->core.background_pixel == mw->menu.disabled_foreground)