diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-03-02 06:01:16 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-03-02 06:01:16 +0000 |
| commit | 80a6f06c0a3d6de2c7d94066c5a9764b97a600af (patch) | |
| tree | a69f738e129e496a5e23b340eb523a6a890d80e6 /openbox/client.c | |
| parent | 78af5d15e9dd94959786811e9eddfa1e5024067c (diff) | |
support clients which use true transparency 32-bit visuals.
this requires that when a client is using a 32-bit visual, we have to
make the frame windows that sit underneath it to use the same visual (and a
colormap which matches it)
Diffstat (limited to 'openbox/client.c')
| -rw-r--r-- | openbox/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openbox/client.c b/openbox/client.c index efd5dbc9..056a9780 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -312,7 +312,7 @@ void client_manage(Window window) XChangeSaveSet(ob_display, window, SetModeInsert); /* create the decoration frame for the client window */ - self->frame = frame_new(); + self->frame = frame_new(self); frame_grab_client(self->frame, self); |
