You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.
Did you search for similar issues before submitting this one?
Yes
Describe the issue you encountered:
With the new Windows titlebar (which uses Electron's frameless window), the top right corner of the window is very hard to resize. It only returns back the resize icon on the exact last pixels, instead of within 5 pixels (see screenshot for example)
Expected behavior:
By default, Windows will typically give a width/height of about 5-10 pixels for resizing on either the non-client areas or the window frame (done via the hit test event processing).
The new custom titlebar uses electron's frameless option. Many areas are tagged as draggable with -webkit-app-region: drag;. When something is draggable, the hit test is going to return CAPTION (ex: the draggable area). This interferes with the default resizing functionality.
This should be fixable by giving the top right corner a margin-top/margin-right of 5px
Platform (Win7, 8, 10? macOS? Linux distro?):
Windows 7 Pro, x64
Did you search for similar issues before submitting this one?
Yes
Describe the issue you encountered:
With the new Windows titlebar (which uses Electron's frameless window), the top right corner of the window is very hard to resize. It only returns back the resize icon on the exact last pixels, instead of within 5 pixels (see screenshot for example)
Expected behavior:
By default, Windows will typically give a width/height of about 5-10 pixels for resizing on either the non-client areas or the window frame (done via the hit test event processing).
The new custom titlebar uses electron's frameless option. Many areas are tagged as draggable with
-webkit-app-region: drag;
. When something is draggable, the hit test is going to return CAPTION (ex: the draggable area). This interferes with the default resizing functionality.This should be fixable by giving the top right corner a margin-top/margin-right of 5px
Windows 7 Pro, x64
HEAD on master
The text was updated successfully, but these errors were encountered: