Commit ed49c7c2 authored by MMP0's avatar MMP0
Browse files

Fix double click event not firing

parent c4b11ec5
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -1065,10 +1065,14 @@ body.resizing {
    cursor: col-resize !important;
}

body.resizing :not(.resize-handle) {
body.resizing * {
    pointer-events: none !important;
}

body.resizing .resize-handle {
    pointer-events: initial !important;
}

.resize-handle {
    position: relative;
    cursor: col-resize;