indenting
This commit is contained in:
parent
9bd60fd92b
commit
4a14e50ae7
1 changed files with 5 additions and 5 deletions
|
@ -182,17 +182,17 @@ static void frame_free(ObFrame *self)
|
|||
void frame_show(ObFrame *self)
|
||||
{
|
||||
if (!self->visible) {
|
||||
self->visible = TRUE;
|
||||
XMapWindow(ob_display, self->window);
|
||||
self->visible = TRUE;
|
||||
XMapWindow(ob_display, self->window);
|
||||
}
|
||||
}
|
||||
|
||||
void frame_hide(ObFrame *self)
|
||||
{
|
||||
if (self->visible) {
|
||||
self->visible = FALSE;
|
||||
self->client->ignore_unmaps++;
|
||||
XUnmapWindow(ob_display, self->window);
|
||||
self->visible = FALSE;
|
||||
self->client->ignore_unmaps++;
|
||||
XUnmapWindow(ob_display, self->window);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue