1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-11 13:50:48 -05:00

Update test.

This commit is contained in:
QC 2015-04-06 20:55:33 +02:00
parent c276090b18
commit 10b22e0c7d

View file

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