increase drag threshold, run it through logical_px()
related to https://github.com/i3/i3/issues/5155
This commit is contained in:
@ -42,7 +42,8 @@ struct drag_x11_cb {
|
|||||||
|
|
||||||
static bool threshold_exceeded(uint32_t x1, uint32_t y1,
|
static bool threshold_exceeded(uint32_t x1, uint32_t y1,
|
||||||
uint32_t x2, uint32_t y2) {
|
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;
|
return (x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2) > threshold * threshold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user