increase drag threshold, run it through logical_px()

related to https://github.com/i3/i3/issues/5155
This commit is contained in:
Michael Stapelberg 2022-10-16 17:19:54 +02:00 committed by Michael Stapelberg
parent 8128774386
commit 6479cb7deb

View File

@ -42,7 +42,8 @@ struct drag_x11_cb {
static bool threshold_exceeded(uint32_t x1, uint32_t y1,
uint32_t x2, uint32_t y2) {
const uint32_t threshold = 9;
/* The threshold is about the height of one window decoration. */
const uint32_t threshold = logical_px(15);
return (x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2) > threshold * threshold;
}