5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 07:52:12 +08:00

Fix fullscreen drag

This commit is contained in:
Lea Anthony 2022-01-29 11:41:50 +11:00
parent ac3808f9c3
commit f3783c9800
No known key found for this signature in database
GPG Key ID: 33DAF7BB90A58405

View File

@ -234,9 +234,9 @@ func (f *Frontend) Notify(name string, data ...interface{}) {
func (f *Frontend) processMessage(message string) {
if message == "drag" {
// if !f.mainWindow.IsFullScreen() {
f.startDrag()
// }
if !f.mainWindow.IsFullScreen() {
f.startDrag()
}
return
}