This repository has been archived by the owner on Dec 11, 2019. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Regression appears to have reset the webkit drag attribute on navigat…
…ion buttons. This is especially important for Windows, because its BrowserWindow is using the FramelessWindow. Fixes #6253 Auditors: @bbondy, @luixxiul
- Loading branch information
ef4bb2f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice find!
I still would set-webkit-app-region: no-drag;
to#navigator
and set-webkit-app-region: drag
to.endbutton > .browserButton
(which is empty for now and will be removed after the PNG sprite is impelemented). I think this would prevent regressing.<- this makes the span between the reload button and the bookmark button undraggable :-(
ef4bb2f
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I created a PR to apply the property to all descendants under
#navigator
: #6681