handle_configure_request: use 'goto out'
This commit is contained in:
parent
9ae84593ba
commit
9190a9ab70
|
@ -327,7 +327,7 @@ static void handle_configure_request(xcb_configure_request_event_t *event) {
|
|||
|
||||
if (strcmp(con_get_workspace(floatingcon)->name, "__i3_scratch") == 0) {
|
||||
DLOG("This is a scratchpad container, ignoring ConfigureRequest\n");
|
||||
return;
|
||||
goto out;
|
||||
}
|
||||
|
||||
Rect newrect = floatingcon->rect;
|
||||
|
@ -387,8 +387,7 @@ static void handle_configure_request(xcb_configure_request_event_t *event) {
|
|||
DLOG("Dock client will not be moved, we only support moving it to another output.\n");
|
||||
}
|
||||
}
|
||||
fake_absolute_configure_notify(con);
|
||||
return;
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (event->value_mask & XCB_CONFIG_WINDOW_STACK_MODE) {
|
||||
|
|
Loading…
Reference in New Issue