Skip to content

Commit

Permalink
Merge pull request #4409 from Jacalz/wrong-resize-on-bsd
Browse files Browse the repository at this point in the history
Fix *BSD systems using the wrong (and slow) window resize
  • Loading branch information
Jacalz authored Nov 27, 2023
2 parents 1580bb0 + 2c5349f commit 4a18a7f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//go:build !linux
// +build !linux
//go:build !linux && !freebsd && !openbsd && !netbsd
// +build !linux,!freebsd,!openbsd,!netbsd

package glfw

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
//go:build linux || freebsd || openbsd || netbsd
// +build linux freebsd openbsd netbsd

package glfw

import "fyne.io/fyne/v2"
Expand Down

0 comments on commit 4a18a7f

Please sign in to comment.