btrtile: fixed bug in buttonpress tiled client insertion logic if only one client is present

This commit is contained in:
julmajustus 2025-02-09 16:34:58 +02:00
parent 2d590d0ecd
commit 5f6ffb8161
2 changed files with 204 additions and 106 deletions

View File

@ -1,4 +1,4 @@
From d56f0b61d6b611a977c065d0834f76b42c0aa038 Mon Sep 17 00:00:00 2001 From 95a7437ccb456b37fc469f237da181b4a174d8b3 Mon Sep 17 00:00:00 2001
From: julmajustus <julmajustus@tutanota.com> From: julmajustus <julmajustus@tutanota.com>
Date: Sat, 8 Feb 2025 05:41:12 +0200 Date: Sat, 8 Feb 2025 05:41:12 +0200
Subject: [PATCH] btrtile-gaps init Subject: [PATCH] btrtile-gaps init
@ -6,8 +6,8 @@ Subject: [PATCH] btrtile-gaps init
--- ---
btrtile.c | 716 +++++++++++++++++++++++++++++++++++++++++++++++++++ btrtile.c | 716 +++++++++++++++++++++++++++++++++++++++++++++++++++
config.def.h | 12 + config.def.h | 12 +
dwl.c | 173 +++++++++++-- dwl.c | 223 ++++++++++++----
3 files changed, 874 insertions(+), 27 deletions(-) 3 files changed, 896 insertions(+), 55 deletions(-)
create mode 100644 btrtile.c create mode 100644 btrtile.c
diff --git a/btrtile.c b/btrtile.c diff --git a/btrtile.c b/btrtile.c
@ -771,7 +771,7 @@ index 22d2171..92f3ad6 100644
TAGKEYS( XKB_KEY_2, XKB_KEY_at, 1), TAGKEYS( XKB_KEY_2, XKB_KEY_at, 1),
TAGKEYS( XKB_KEY_3, XKB_KEY_numbersign, 2), TAGKEYS( XKB_KEY_3, XKB_KEY_numbersign, 2),
diff --git a/dwl.c b/dwl.c diff --git a/dwl.c b/dwl.c
index a2711f6..7682366 100644 index a2711f6..c7f097d 100644
--- a/dwl.c --- a/dwl.c
+++ b/dwl.c +++ b/dwl.c
@@ -1,6 +1,7 @@ @@ -1,6 +1,7 @@
@ -837,14 +837,14 @@ index a2711f6..7682366 100644
/* function implementations */ /* function implementations */
void void
@@ -600,10 +611,15 @@ buttonpress(struct wl_listener *listener, void *data) @@ -600,53 +611,84 @@ buttonpress(struct wl_listener *listener, void *data)
{ {
struct wlr_pointer_button_event *event = data; struct wlr_pointer_button_event *event = data;
struct wlr_keyboard *keyboard; struct wlr_keyboard *keyboard;
- uint32_t mods; - uint32_t mods;
- Client *c; - Client *c;
+ struct wl_list *tiled_clients; + struct wl_list *tiled_clients;
+ LayoutNode **root, *old_root; + LayoutNode **root;
+ uint32_t mods, curtag, active_tags = selmon->tagset[selmon->seltags]; + uint32_t mods, curtag, active_tags = selmon->tagset[selmon->seltags];
+ Client *c, *target = NULL; + Client *c, *target = NULL;
const Button *b; const Button *b;
@ -855,57 +855,106 @@ index a2711f6..7682366 100644
wlr_idle_notifier_v1_notify_activity(idle_notifier, seat); wlr_idle_notifier_v1_notify_activity(idle_notifier, seat);
switch (event->state) { switch (event->state) {
@@ -632,15 +648,47 @@ buttonpress(struct wl_listener *listener, void *data) - case WL_POINTER_BUTTON_STATE_PRESSED:
/* If you released any buttons, we exit interactive move/resize mode. */ - cursor_mode = CurPressed;
/* TODO should reset to the pointer focus's current setcursor */ - selmon = xytomon(cursor->x, cursor->y);
if (!locked && cursor_mode != CurNormal && cursor_mode != CurPressed) { - if (locked)
+ c = grabc; - break;
+ if (c && c->was_tiled && !strcmp(selmon->ltsymbol, "|w|")) { + case WL_POINTER_BUTTON_STATE_PRESSED:
+ /* Check if more than one tag is active, if so we escape */ + cursor_mode = CurPressed;
+ if (active_tags && (active_tags & (active_tags - 1))) + selmon = xytomon(cursor->x, cursor->y);
+ break; + if (locked)
+ if (cursor_mode == CurMove && c->isfloating) { + break;
+ target = xytoclient(cursor->x, cursor->y, curtag);
- /* Change focus if the button was _pressed_ over a client */
- xytonode(cursor->x, cursor->y, NULL, &c, NULL, NULL, NULL);
- if (c && (!client_is_unmanaged(c) || client_wants_focus(c)))
- focusclient(c, 1);
+ /* Change focus if the button was _pressed_ over a client */
+ xytonode(cursor->x, cursor->y, NULL, &c, NULL, NULL, NULL);
+ if (c && (!client_is_unmanaged(c) || client_wants_focus(c)))
+ focusclient(c, 1);
- keyboard = wlr_seat_get_keyboard(seat);
- mods = keyboard ? wlr_keyboard_get_modifiers(keyboard) : 0;
- for (b = buttons; b < END(buttons); b++) {
- if (CLEANMASK(mods) == CLEANMASK(b->mod) &&
+ keyboard = wlr_seat_get_keyboard(seat);
+ mods = keyboard ? wlr_keyboard_get_modifiers(keyboard) : 0;
+ for (b = buttons; b < END(buttons); b++) {
+ if (CLEANMASK(mods) == CLEANMASK(b->mod) &&
event->button == b->button && b->func) {
- b->func(&b->arg);
+ b->func(&b->arg);
+ return;
+ }
+ }
+ break;
+ case WL_POINTER_BUTTON_STATE_RELEASED:
+ /* If you released any buttons, we exit interactive move/resize mode. */
+ /* TODO should reset to the pointer focus's current setcursor */
+ if (!locked && cursor_mode != CurNormal && cursor_mode != CurPressed) {
+ c = grabc;
+ if (c && c->was_tiled && !strcmp(selmon->ltsymbol, "|w|")) {
+ /* Check if more than one tag is active, if so we escape */
+ if (active_tags && (active_tags & (active_tags - 1)))
+ break;
+ if (cursor_mode == CurMove && c->isfloating) {
+ target = xytoclient(cursor->x, cursor->y, curtag);
+ +
+ if (target && !target->isfloating && !target->isfullscreen) { + if (target && !target->isfloating && !target->isfullscreen) {
+ insert_client(selmon, target, c, root, tiled_clients); + insert_client(selmon, target, c, root, tiled_clients);
+ } else { + } else {
+ if (!root) {
+ *root = create_client_node(c); + *root = create_client_node(c);
+ add_client_to_tiled_list(c, tiled_clients); + add_client_to_tiled_list(c, tiled_clients);
+ } else {
+ old_root = *root;
+ *root = create_split_node(1, old_root, create_client_node(c));
+ add_client_to_tiled_list(c, tiled_clients);
+ } + }
+
+ setfloating(c, 0);
+ arrange(selmon);
+
+ } else if (cursor_mode == CurResize && !c->isfloating) {
+ resizing_from_mouse = 0;
+ } + }
+ + } else {
+ setfloating(c, 0); + if (cursor_mode == CurResize && resizing_from_mouse)
+ arrange(selmon); + resizing_from_mouse = 0;
+
+ } else if (cursor_mode == CurResize && !c->isfloating) {
+ resizing_from_mouse = 0;
+ } + }
+ } else { + /* Default behaviour */
+ if (cursor_mode == CurResize && resizing_from_mouse) + wlr_cursor_set_xcursor(cursor, cursor_mgr, "default");
+ resizing_from_mouse = 0; + cursor_mode = CurNormal;
+ } + /* Drop the window off on its new monitor */
+ /* Default behaviour */ + selmon = xytomon(cursor->x, cursor->y);
wlr_cursor_set_xcursor(cursor, cursor_mgr, "default"); + setmon(grabc, selmon, 0);
cursor_mode = CurNormal; + grabc = NULL;
/* Drop the window off on its new monitor */ return;
selmon = xytomon(cursor->x, cursor->y); }
setmon(grabc, selmon, 0); - }
+ grabc = NULL; - break;
return; - case WL_POINTER_BUTTON_STATE_RELEASED:
- } else { - /* If you released any buttons, we exit interactive move/resize mode. */
- /* TODO should reset to the pointer focus's current setcursor */
- if (!locked && cursor_mode != CurNormal && cursor_mode != CurPressed) {
- wlr_cursor_set_xcursor(cursor, cursor_mgr, "default");
- cursor_mode = CurNormal; - cursor_mode = CurNormal;
} - /* Drop the window off on its new monitor */
+ cursor_mode = CurNormal; - selmon = xytomon(cursor->x, cursor->y);
break; - setmon(grabc, selmon, 0);
- return;
- } else {
cursor_mode = CurNormal;
- }
- break;
+ break;
} }
/* If the event wasn't handled by the compositor, notify the client with /* If the event wasn't handled by the compositor, notify the client with
@@ -720,6 +768,9 @@ cleanupmon(struct wl_listener *listener, void *data) * pointer focus that a button press has occurred */
wlr_seat_pointer_notify_button(seat,
- event->time_msec, event->button, event->state);
+ event->time_msec, event->button, event->state);
}
void
@@ -720,6 +762,9 @@ cleanupmon(struct wl_listener *listener, void *data)
wlr_output_layout_remove(output_layout, m->wlr_output); wlr_output_layout_remove(output_layout, m->wlr_output);
wlr_scene_output_destroy(m->scene_output); wlr_scene_output_destroy(m->scene_output);
@ -915,7 +964,7 @@ index a2711f6..7682366 100644
closemon(m); closemon(m);
wlr_scene_node_destroy(&m->fullscreen_bg->node); wlr_scene_node_destroy(&m->fullscreen_bg->node);
free(m); free(m);
@@ -1024,6 +1075,7 @@ createmon(struct wl_listener *listener, void *data) @@ -1024,6 +1069,7 @@ createmon(struct wl_listener *listener, void *data)
wl_list_insert(&mons, &m->link); wl_list_insert(&mons, &m->link);
printstatus(); printstatus();
@ -923,7 +972,7 @@ index a2711f6..7682366 100644
/* The xdg-protocol specifies: /* The xdg-protocol specifies:
* *
@@ -1263,6 +1315,15 @@ destroynotify(struct wl_listener *listener, void *data) @@ -1263,6 +1309,15 @@ destroynotify(struct wl_listener *listener, void *data)
wl_list_remove(&c->destroy.link); wl_list_remove(&c->destroy.link);
wl_list_remove(&c->set_title.link); wl_list_remove(&c->set_title.link);
wl_list_remove(&c->fullscreen.link); wl_list_remove(&c->fullscreen.link);
@ -939,7 +988,7 @@ index a2711f6..7682366 100644
#ifdef XWAYLAND #ifdef XWAYLAND
if (c->type != XDGShell) { if (c->type != XDGShell) {
wl_list_remove(&c->activate.link); wl_list_remove(&c->activate.link);
@@ -1809,7 +1870,8 @@ void @@ -1809,7 +1864,8 @@ void
motionnotify(uint32_t time, struct wlr_input_device *device, double dx, double dy, motionnotify(uint32_t time, struct wlr_input_device *device, double dx, double dy,
double dx_unaccel, double dy_unaccel) double dx_unaccel, double dy_unaccel)
{ {
@ -949,7 +998,7 @@ index a2711f6..7682366 100644
Client *c = NULL, *w = NULL; Client *c = NULL, *w = NULL;
LayerSurface *l = NULL; LayerSurface *l = NULL;
struct wlr_surface *surface = NULL; struct wlr_surface *surface = NULL;
@@ -1863,18 +1925,56 @@ motionnotify(uint32_t time, struct wlr_input_device *device, double dx, double d @@ -1863,18 +1919,56 @@ motionnotify(uint32_t time, struct wlr_input_device *device, double dx, double d
/* Update drag icon's position */ /* Update drag icon's position */
wlr_scene_node_set_position(&drag_icon->node, (int)round(cursor->x), (int)round(cursor->y)); wlr_scene_node_set_position(&drag_icon->node, (int)round(cursor->x), (int)round(cursor->y));
@ -1013,7 +1062,7 @@ index a2711f6..7682366 100644
/* If there's no client surface under the cursor, set the cursor image to a /* If there's no client surface under the cursor, set the cursor image to a
* default. This is what makes the cursor image appear when you move it * default. This is what makes the cursor image appear when you move it
* off of a client or over its border. */ * off of a client or over its border. */
@@ -1908,22 +2008,41 @@ moveresize(const Arg *arg) @@ -1908,22 +2002,41 @@ moveresize(const Arg *arg)
if (!grabc || client_is_unmanaged(grabc) || grabc->isfullscreen) if (!grabc || client_is_unmanaged(grabc) || grabc->isfullscreen)
return; return;

View File

@ -1,4 +1,4 @@
From e73fdffcc2bd4af301f4cebc9f665f0675190b85 Mon Sep 17 00:00:00 2001 From e6beff6279773f3dec87dc4a2aedd15304a040f0 Mon Sep 17 00:00:00 2001
From: julmajustus <julmajustus@tutanota.com> From: julmajustus <julmajustus@tutanota.com>
Date: Sat, 8 Feb 2025 04:54:14 +0200 Date: Sat, 8 Feb 2025 04:54:14 +0200
Subject: [PATCH] btrtile init Subject: [PATCH] btrtile init
@ -6,8 +6,8 @@ Subject: [PATCH] btrtile init
--- ---
btrtile.c | 696 +++++++++++++++++++++++++++++++++++++++++++++++++++ btrtile.c | 696 +++++++++++++++++++++++++++++++++++++++++++++++++++
config.def.h | 12 + config.def.h | 12 +
dwl.c | 173 +++++++++++-- dwl.c | 223 +++++++++++++----
3 files changed, 854 insertions(+), 27 deletions(-) 3 files changed, 876 insertions(+), 55 deletions(-)
create mode 100644 btrtile.c create mode 100644 btrtile.c
diff --git a/btrtile.c b/btrtile.c diff --git a/btrtile.c b/btrtile.c
@ -751,7 +751,7 @@ index 22d2171..92f3ad6 100644
TAGKEYS( XKB_KEY_2, XKB_KEY_at, 1), TAGKEYS( XKB_KEY_2, XKB_KEY_at, 1),
TAGKEYS( XKB_KEY_3, XKB_KEY_numbersign, 2), TAGKEYS( XKB_KEY_3, XKB_KEY_numbersign, 2),
diff --git a/dwl.c b/dwl.c diff --git a/dwl.c b/dwl.c
index a2711f6..7682366 100644 index a2711f6..c7f097d 100644
--- a/dwl.c --- a/dwl.c
+++ b/dwl.c +++ b/dwl.c
@@ -1,6 +1,7 @@ @@ -1,6 +1,7 @@
@ -817,14 +817,14 @@ index a2711f6..7682366 100644
/* function implementations */ /* function implementations */
void void
@@ -600,10 +611,15 @@ buttonpress(struct wl_listener *listener, void *data) @@ -600,53 +611,84 @@ buttonpress(struct wl_listener *listener, void *data)
{ {
struct wlr_pointer_button_event *event = data; struct wlr_pointer_button_event *event = data;
struct wlr_keyboard *keyboard; struct wlr_keyboard *keyboard;
- uint32_t mods; - uint32_t mods;
- Client *c; - Client *c;
+ struct wl_list *tiled_clients; + struct wl_list *tiled_clients;
+ LayoutNode **root, *old_root; + LayoutNode **root;
+ uint32_t mods, curtag, active_tags = selmon->tagset[selmon->seltags]; + uint32_t mods, curtag, active_tags = selmon->tagset[selmon->seltags];
+ Client *c, *target = NULL; + Client *c, *target = NULL;
const Button *b; const Button *b;
@ -835,57 +835,106 @@ index a2711f6..7682366 100644
wlr_idle_notifier_v1_notify_activity(idle_notifier, seat); wlr_idle_notifier_v1_notify_activity(idle_notifier, seat);
switch (event->state) { switch (event->state) {
@@ -632,15 +648,47 @@ buttonpress(struct wl_listener *listener, void *data) - case WL_POINTER_BUTTON_STATE_PRESSED:
/* If you released any buttons, we exit interactive move/resize mode. */ - cursor_mode = CurPressed;
/* TODO should reset to the pointer focus's current setcursor */ - selmon = xytomon(cursor->x, cursor->y);
if (!locked && cursor_mode != CurNormal && cursor_mode != CurPressed) { - if (locked)
+ c = grabc; - break;
+ if (c && c->was_tiled && !strcmp(selmon->ltsymbol, "|w|")) { + case WL_POINTER_BUTTON_STATE_PRESSED:
+ /* Check if more than one tag is active, if so we escape */ + cursor_mode = CurPressed;
+ if (active_tags && (active_tags & (active_tags - 1))) + selmon = xytomon(cursor->x, cursor->y);
+ break; + if (locked)
+ if (cursor_mode == CurMove && c->isfloating) { + break;
+ target = xytoclient(cursor->x, cursor->y, curtag);
- /* Change focus if the button was _pressed_ over a client */
- xytonode(cursor->x, cursor->y, NULL, &c, NULL, NULL, NULL);
- if (c && (!client_is_unmanaged(c) || client_wants_focus(c)))
- focusclient(c, 1);
+ /* Change focus if the button was _pressed_ over a client */
+ xytonode(cursor->x, cursor->y, NULL, &c, NULL, NULL, NULL);
+ if (c && (!client_is_unmanaged(c) || client_wants_focus(c)))
+ focusclient(c, 1);
- keyboard = wlr_seat_get_keyboard(seat);
- mods = keyboard ? wlr_keyboard_get_modifiers(keyboard) : 0;
- for (b = buttons; b < END(buttons); b++) {
- if (CLEANMASK(mods) == CLEANMASK(b->mod) &&
+ keyboard = wlr_seat_get_keyboard(seat);
+ mods = keyboard ? wlr_keyboard_get_modifiers(keyboard) : 0;
+ for (b = buttons; b < END(buttons); b++) {
+ if (CLEANMASK(mods) == CLEANMASK(b->mod) &&
event->button == b->button && b->func) {
- b->func(&b->arg);
+ b->func(&b->arg);
+ return;
+ }
+ }
+ break;
+ case WL_POINTER_BUTTON_STATE_RELEASED:
+ /* If you released any buttons, we exit interactive move/resize mode. */
+ /* TODO should reset to the pointer focus's current setcursor */
+ if (!locked && cursor_mode != CurNormal && cursor_mode != CurPressed) {
+ c = grabc;
+ if (c && c->was_tiled && !strcmp(selmon->ltsymbol, "|w|")) {
+ /* Check if more than one tag is active, if so we escape */
+ if (active_tags && (active_tags & (active_tags - 1)))
+ break;
+ if (cursor_mode == CurMove && c->isfloating) {
+ target = xytoclient(cursor->x, cursor->y, curtag);
+ +
+ if (target && !target->isfloating && !target->isfullscreen) { + if (target && !target->isfloating && !target->isfullscreen) {
+ insert_client(selmon, target, c, root, tiled_clients); + insert_client(selmon, target, c, root, tiled_clients);
+ } else { + } else {
+ if (!root) {
+ *root = create_client_node(c); + *root = create_client_node(c);
+ add_client_to_tiled_list(c, tiled_clients); + add_client_to_tiled_list(c, tiled_clients);
+ } else {
+ old_root = *root;
+ *root = create_split_node(1, old_root, create_client_node(c));
+ add_client_to_tiled_list(c, tiled_clients);
+ } + }
+
+ setfloating(c, 0);
+ arrange(selmon);
+
+ } else if (cursor_mode == CurResize && !c->isfloating) {
+ resizing_from_mouse = 0;
+ } + }
+ + } else {
+ setfloating(c, 0); + if (cursor_mode == CurResize && resizing_from_mouse)
+ arrange(selmon); + resizing_from_mouse = 0;
+
+ } else if (cursor_mode == CurResize && !c->isfloating) {
+ resizing_from_mouse = 0;
+ } + }
+ } else { + /* Default behaviour */
+ if (cursor_mode == CurResize && resizing_from_mouse) + wlr_cursor_set_xcursor(cursor, cursor_mgr, "default");
+ resizing_from_mouse = 0; + cursor_mode = CurNormal;
+ } + /* Drop the window off on its new monitor */
+ /* Default behaviour */ + selmon = xytomon(cursor->x, cursor->y);
wlr_cursor_set_xcursor(cursor, cursor_mgr, "default"); + setmon(grabc, selmon, 0);
cursor_mode = CurNormal; + grabc = NULL;
/* Drop the window off on its new monitor */ return;
selmon = xytomon(cursor->x, cursor->y); }
setmon(grabc, selmon, 0); - }
+ grabc = NULL; - break;
return; - case WL_POINTER_BUTTON_STATE_RELEASED:
- } else { - /* If you released any buttons, we exit interactive move/resize mode. */
- /* TODO should reset to the pointer focus's current setcursor */
- if (!locked && cursor_mode != CurNormal && cursor_mode != CurPressed) {
- wlr_cursor_set_xcursor(cursor, cursor_mgr, "default");
- cursor_mode = CurNormal; - cursor_mode = CurNormal;
} - /* Drop the window off on its new monitor */
+ cursor_mode = CurNormal; - selmon = xytomon(cursor->x, cursor->y);
break; - setmon(grabc, selmon, 0);
- return;
- } else {
cursor_mode = CurNormal;
- }
- break;
+ break;
} }
/* If the event wasn't handled by the compositor, notify the client with /* If the event wasn't handled by the compositor, notify the client with
@@ -720,6 +768,9 @@ cleanupmon(struct wl_listener *listener, void *data) * pointer focus that a button press has occurred */
wlr_seat_pointer_notify_button(seat,
- event->time_msec, event->button, event->state);
+ event->time_msec, event->button, event->state);
}
void
@@ -720,6 +762,9 @@ cleanupmon(struct wl_listener *listener, void *data)
wlr_output_layout_remove(output_layout, m->wlr_output); wlr_output_layout_remove(output_layout, m->wlr_output);
wlr_scene_output_destroy(m->scene_output); wlr_scene_output_destroy(m->scene_output);
@ -895,7 +944,7 @@ index a2711f6..7682366 100644
closemon(m); closemon(m);
wlr_scene_node_destroy(&m->fullscreen_bg->node); wlr_scene_node_destroy(&m->fullscreen_bg->node);
free(m); free(m);
@@ -1024,6 +1075,7 @@ createmon(struct wl_listener *listener, void *data) @@ -1024,6 +1069,7 @@ createmon(struct wl_listener *listener, void *data)
wl_list_insert(&mons, &m->link); wl_list_insert(&mons, &m->link);
printstatus(); printstatus();
@ -903,7 +952,7 @@ index a2711f6..7682366 100644
/* The xdg-protocol specifies: /* The xdg-protocol specifies:
* *
@@ -1263,6 +1315,15 @@ destroynotify(struct wl_listener *listener, void *data) @@ -1263,6 +1309,15 @@ destroynotify(struct wl_listener *listener, void *data)
wl_list_remove(&c->destroy.link); wl_list_remove(&c->destroy.link);
wl_list_remove(&c->set_title.link); wl_list_remove(&c->set_title.link);
wl_list_remove(&c->fullscreen.link); wl_list_remove(&c->fullscreen.link);
@ -919,7 +968,7 @@ index a2711f6..7682366 100644
#ifdef XWAYLAND #ifdef XWAYLAND
if (c->type != XDGShell) { if (c->type != XDGShell) {
wl_list_remove(&c->activate.link); wl_list_remove(&c->activate.link);
@@ -1809,7 +1870,8 @@ void @@ -1809,7 +1864,8 @@ void
motionnotify(uint32_t time, struct wlr_input_device *device, double dx, double dy, motionnotify(uint32_t time, struct wlr_input_device *device, double dx, double dy,
double dx_unaccel, double dy_unaccel) double dx_unaccel, double dy_unaccel)
{ {
@ -929,7 +978,7 @@ index a2711f6..7682366 100644
Client *c = NULL, *w = NULL; Client *c = NULL, *w = NULL;
LayerSurface *l = NULL; LayerSurface *l = NULL;
struct wlr_surface *surface = NULL; struct wlr_surface *surface = NULL;
@@ -1863,18 +1925,56 @@ motionnotify(uint32_t time, struct wlr_input_device *device, double dx, double d @@ -1863,18 +1919,56 @@ motionnotify(uint32_t time, struct wlr_input_device *device, double dx, double d
/* Update drag icon's position */ /* Update drag icon's position */
wlr_scene_node_set_position(&drag_icon->node, (int)round(cursor->x), (int)round(cursor->y)); wlr_scene_node_set_position(&drag_icon->node, (int)round(cursor->x), (int)round(cursor->y));
@ -993,7 +1042,7 @@ index a2711f6..7682366 100644
/* If there's no client surface under the cursor, set the cursor image to a /* If there's no client surface under the cursor, set the cursor image to a
* default. This is what makes the cursor image appear when you move it * default. This is what makes the cursor image appear when you move it
* off of a client or over its border. */ * off of a client or over its border. */
@@ -1908,22 +2008,41 @@ moveresize(const Arg *arg) @@ -1908,22 +2002,41 @@ moveresize(const Arg *arg)
if (!grabc || client_is_unmanaged(grabc) || grabc->isfullscreen) if (!grabc || client_is_unmanaged(grabc) || grabc->isfullscreen)
return; return;