driver_notwindows.go 251 B

1234567891011121314
  1. //go:build !windows
  2. // +build !windows
  3. package glfw
  4. import "fyne.io/fyne/v2"
  5. func logError(msg string, err error) {
  6. fyne.LogError(msg, err)
  7. }
  8. func isDark() bool {
  9. return true // this is really a no-op placeholder for a windows menu workaround
  10. }