[gnome-shell/wip/carlosg/dnd-fixes: 2/2] dnd: Multiply drag threshold by output scale
- From: Carlos Garnacho <carlosg src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/wip/carlosg/dnd-fixes: 2/2] dnd: Multiply drag threshold by output scale
- Date: Tue, 12 Mar 2019 01:36:16 +0000 (UTC)
commit c6a3bc21f6a0dc1ded5ef0ba55ed591d9870d1d6
Author: Carlos Garnacho <carlosg gnome org>
Date: Tue Mar 12 02:14:07 2019 +0100
dnd: Multiply drag threshold by output scale
So it comes out right on hidpi, and consistent with clients.
https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/455
js/ui/dnd.js | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/js/ui/dnd.js b/js/ui/dnd.js
index f92339dae..be662eec7 100644
--- a/js/ui/dnd.js
+++ b/js/ui/dnd.js
@@ -450,7 +450,8 @@ var _Draggable = class _Draggable {
let [stageX, stageY] = event.get_coords();
// See if the user has moved the mouse enough to trigger a drag
- let threshold = St.Settings.get().drag_threshold;
+ let scaleFactor = St.ThemeContext.get_for_stage(global.stage).scale_factor;
+ let threshold = St.Settings.get().drag_threshold * scaleFactor;
if (Math.abs(stageX - this._dragStartX) > threshold ||
Math.abs(stageY - this._dragStartY) > threshold) {
this.startDrag(stageX, stageY, event.get_time(), this._touchSequence, event.get_device());
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]