mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 19:38:01 +03:00
Merge 2ea6ceb6bb
into a25645a5a6
This commit is contained in:
commit
c2f429f81a
3 changed files with 10 additions and 1 deletions
|
@ -9,6 +9,7 @@
|
||||||
#include <wlr/util/edges.h>
|
#include <wlr/util/edges.h>
|
||||||
#include "sway/config.h"
|
#include "sway/config.h"
|
||||||
#include "sway/input/input-manager.h"
|
#include "sway/input/input-manager.h"
|
||||||
|
#include "sway/input/keyboard.h"
|
||||||
#include "sway/input/tablet.h"
|
#include "sway/input/tablet.h"
|
||||||
#include "sway/input/text_input.h"
|
#include "sway/input/text_input.h"
|
||||||
|
|
||||||
|
@ -369,4 +370,7 @@ keyboard_shortcuts_inhibitor_get_for_surface(const struct sway_seat *seat,
|
||||||
struct sway_keyboard_shortcuts_inhibitor *
|
struct sway_keyboard_shortcuts_inhibitor *
|
||||||
keyboard_shortcuts_inhibitor_get_for_focused_surface(const struct sway_seat *seat);
|
keyboard_shortcuts_inhibitor_get_for_focused_surface(const struct sway_seat *seat);
|
||||||
|
|
||||||
|
struct sway_keyboard *sway_keyboard_for_wlr_keyboard(struct sway_seat *seat,
|
||||||
|
struct wlr_keyboard *wlr_keyboard);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -130,7 +130,7 @@ static void seat_send_activate(struct sway_node *node, struct sway_seat *seat) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct sway_keyboard *sway_keyboard_for_wlr_keyboard(
|
struct sway_keyboard *sway_keyboard_for_wlr_keyboard(
|
||||||
struct sway_seat *seat, struct wlr_keyboard *wlr_keyboard) {
|
struct sway_seat *seat, struct wlr_keyboard *wlr_keyboard) {
|
||||||
struct sway_seat_device *seat_device;
|
struct sway_seat_device *seat_device;
|
||||||
wl_list_for_each(seat_device, &seat->devices, link) {
|
wl_list_for_each(seat_device, &seat->devices, link) {
|
||||||
|
|
|
@ -368,6 +368,11 @@ static void handle_button(struct sway_seat *seat, uint32_t time_msec,
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Clear pending keyboard bindings, if any
|
||||||
|
if (state == WL_POINTER_BUTTON_STATE_PRESSED && modifiers != 0) {
|
||||||
|
sway_keyboard_for_wlr_keyboard(seat, keyboard)->held_binding = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
// Handle clicking an empty workspace
|
// Handle clicking an empty workspace
|
||||||
if (node && node->type == N_WORKSPACE) {
|
if (node && node->type == N_WORKSPACE) {
|
||||||
if (state == WL_POINTER_BUTTON_STATE_PRESSED) {
|
if (state == WL_POINTER_BUTTON_STATE_PRESSED) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue