Browse Source

fix: return HTNOWHERE in resize hit test to allow draggable regions to kick in when required (#31298)

Co-authored-by: Samuel Attard <[email protected]>
trop[bot] 3 years ago
parent
commit
a13ea19b3c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      shell/browser/ui/views/frameless_view.cc

+ 2 - 2
shell/browser/ui/views/frameless_view.cc

@@ -40,10 +40,10 @@ int FramelessView::ResizingBorderHitTest(const gfx::Point& point) {
                              : false;
 
   // https://github.com/electron/electron/issues/611
-  // If window isn't resizable, we should always return HTCLIENT, otherwise the
+  // If window isn't resizable, we should always return HTNOWHERE, otherwise the
   // hover state of DOM will not be cleared probably.
   if (!can_ever_resize)
-    return HTCLIENT;
+    return HTNOWHERE;
 
   // Don't allow overlapping resize handles when the window is maximized or
   // fullscreen, as it can't be resized in those states.