Update test.

This commit is contained in:
QC 2015-04-06 20:55:33 +02:00
parent c276090b18
commit 10b22e0c7d
1 changed files with 2 additions and 2 deletions

View File

@ -65,8 +65,8 @@ int main ( G_GNUC_UNUSED int argc, G_GNUC_UNUSED char **argv )
TASSERT( display != NULL );
XSetWindowAttributes attr;
attr.colormap = map;
attr.border_pixel = color_get ( display, config.menu_bc );
attr.background_pixel = color_get ( display, config.menu_bg );
attr.border_pixel = color_get ( display, "white" );
attr.background_pixel = color_get ( display, "black");
Window mw = XCreateWindow ( display, DefaultRootWindow ( display ),
0, 0, 200, 100, config.menu_bw, vinfo.depth, InputOutput,
vinfo.visual, CWColormap | CWBorderPixel | CWBackPixel, &attr );