FIX: increase reorder sidebar delay for desktop (#21196)
100ms as a single click was too fast, because average single click is closer to 250ms. Previous PR: https://github.com/discourse/discourse/pull/21098
This commit is contained in:
parent
30f0afe873
commit
3e414996c2
|
@ -4,7 +4,7 @@ import RouteInfoHelper from "discourse/lib/sidebar/route-info-helper";
|
|||
import discourseLater from "discourse-common/lib/later";
|
||||
|
||||
const TOUCH_SCREEN_DELAY = 300;
|
||||
const MOUSE_DELAY = 100;
|
||||
const MOUSE_DELAY = 250;
|
||||
|
||||
export default class SectionLink {
|
||||
@tracked linkDragCss;
|
||||
|
|
Loading…
Reference in New Issue