aboutsummaryrefslogtreecommitdiff
path: root/sway
diff options
context:
space:
mode:
authoremersion <contact@emersion.fr>2018-10-27 21:22:03 +0200
committerGitHub <noreply@github.com>2018-10-27 21:22:03 +0200
commitf9a276544b40e74c5c0c0e2be99b950c6c474edf (patch)
tree519598a6344496d142aae6ff8eaab0dc8a5a1f1b /sway
parent707f3ad2750d74a46ff859439e87acc661b599f5 (diff)
parentcd3c2f4553f570694020cc00dd548e0ae66d2755 (diff)
Merge pull request #3003 from Hi-Angel/master
seat: don't traverse the list to check if it's empty
Diffstat (limited to 'sway')
-rw-r--r--sway/input/seat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/input/seat.c b/sway/input/seat.c
index 9d4dc7af..64419afa 100644
--- a/sway/input/seat.c
+++ b/sway/input/seat.c
@@ -948,7 +948,7 @@ struct sway_node *seat_get_focus(struct sway_seat *seat) {
if (!seat->has_focus) {
return NULL;
}
- if (wl_list_length(&seat->focus_stack) == 0) {
+ if (wl_list_empty(&seat->focus_stack)) {
return NULL;
}
struct sway_seat_node *current =