summaryrefslogtreecommitdiffstats
path: root/source/view.c
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-02-27 21:55:43 +0100
committerDave Davenport <qball@gmpclient.org>2016-02-27 21:55:43 +0100
commitbb2f0d8b837f4829d9f5d24d33f9f81097250ebc (patch)
treece4922c40c282e1a5c561ac84be0e9dde421181f /source/view.c
parenta02cb83a98823c914659c29fee75fa5354a2c492 (diff)
Move more to xcb, window_*_ functions to xcb_ functions
Diffstat (limited to 'source/view.c')
-rw-r--r--source/view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/view.c b/source/view.c
index b0d52ce5..615c57bc 100644
--- a/source/view.c
+++ b/source/view.c
@@ -559,7 +559,7 @@ static Window __create_window ( xcb_connection_t *xcb_connection, xcb_screen_t *
xcb_change_property ( xcb_connection, XCB_PROP_MODE_REPLACE, box, xcb_ewmh._NET_WM_NAME, xcb_ewmh.UTF8_STRING, 8, 4,"rofi");
xcb_change_property ( xcb_connection, XCB_PROP_MODE_REPLACE, box, XCB_ATOM_WM_NAME, XCB_ATOM_STRING, 8, 4,"rofi");
- x11_set_window_opacity ( display, box, config.window_opacity );
+ x11_set_window_opacity ( xcb_connection, box, config.window_opacity );
return box;
}