summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--clients/desktop-shell.c2
-rw-r--r--desktop-shell/shell.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/clients/desktop-shell.c b/clients/desktop-shell.c
index 4e7a815e..f96dcf1c 100644
--- a/clients/desktop-shell.c
+++ b/clients/desktop-shell.c
@@ -765,7 +765,7 @@ background_configure(void *data,
struct background *background =
(struct background *) window_get_user_data(window);
- widget_schedule_resize(background->widget, width, height);
+ widget_schedule_resize(background->widget, width - 256, height);
}
static void
diff --git a/desktop-shell/shell.c b/desktop-shell/shell.c
index 7981099a..e22c97fa 100644
--- a/desktop-shell/shell.c
+++ b/desktop-shell/shell.c
@@ -4216,6 +4216,8 @@ click_to_activate_binding(struct weston_seat *seat, uint32_t time, uint32_t butt
{
if (seat->pointer->grab != &seat->pointer->default_grab)
return;
+ if (seat->pointer->focus == NULL)
+ return;
activate_binding(seat, data, seat->pointer->focus->surface);
}