URI: 
       tFix colors. - plan9port - [fork] Plan 9 from user space
  HTML git clone git://src.adamsgaard.dk/plan9port
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 0023dde3260f4d6b085bed7d90bf8b1ca0daf77b
   DIR parent e62ba5ec0bd3245fb70b033d3e4969b00db91452
  HTML Author: rsc <devnull@localhost>
       Date:   Mon, 22 Mar 2004 16:08:32 +0000
       
       Fix colors.
       
       Diffstat:
         M src/cmd/rio/main.c                  |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
   DIR diff --git a/src/cmd/rio/main.c b/src/cmd/rio/main.c
       t@@ -295,7 +295,7 @@ initscreen(ScreenInfo *s, int i, int background)
        */
                        system("xsetroot -solid grey30");
                }
       -        s->menuwin = XCreateSimpleWindow(dpy, s->root, 0, 0, 1, 1, 2, colorpixel(dpy, s->depth, 0xAAFFAA), colorpixel(dpy, s->depth, 0xE9FFE9));
       +        s->menuwin = XCreateSimpleWindow(dpy, s->root, 0, 0, 1, 1, 2, colorpixel(dpy, s->depth, 0x88CC88), colorpixel(dpy, s->depth, 0xE9FFE9));
                s->sweepwin = XCreateSimpleWindow(dpy, s->root, 0, 0, 1, 1, 4, s->red, colorpixel(dpy, s->depth, 0xEEEEEE));
        }