mirror of
https://github.com/swaywm/sway.git
synced 2024-11-17 13:42:36 +00:00
seatop_default: only focus container on press
This matches i3's behavior of only focusing a container when pressed. This allows for `bindsym button1 nop`, `bindsym BTN_LEFT nop`, or `bindcode 272 nop` to be used to disable focusing when clicking on the title (or with additional flags to bind{code,sym} other portions of the container). Without this additional condition, the user would need both `bindsym button1 nop` and `bindsym --release button1 nop` to override both the pressed and released behavior.
This commit is contained in:
parent
0ad5e355bd
commit
187306640b
|
@ -400,7 +400,7 @@ static void handle_button(struct sway_seat *seat, uint32_t time_msec,
|
||||||
}
|
}
|
||||||
|
|
||||||
// Handle clicking a container surface or decorations
|
// Handle clicking a container surface or decorations
|
||||||
if (cont) {
|
if (cont && state == WLR_BUTTON_PRESSED) {
|
||||||
node = seat_get_focus_inactive(seat, &cont->node);
|
node = seat_get_focus_inactive(seat, &cont->node);
|
||||||
seat_set_focus(seat, node);
|
seat_set_focus(seat, node);
|
||||||
seat_pointer_notify_button(seat, time_msec, button, state);
|
seat_pointer_notify_button(seat, time_msec, button, state);
|
||||||
|
|
Loading…
Reference in a new issue