From 48ee30cf348a8357b0ad2a94a718de4556d80d8a Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Fri, 15 Apr 2022 14:27:21 +0900 Subject: [PATCH] ebiten: fix a wrong comment at WindowResizingModeOnlyFullscreenEnabled --- window.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/window.go b/window.go index 6f4d54649..9d42fd706 100644 --- a/window.go +++ b/window.go @@ -32,7 +32,7 @@ const ( // WindowResizingModeDisabled indicates the mode to disallow resizing the window by a user. WindowResizingModeDisabled WindowResizingModeType = WindowResizingModeType(ui.WindowResizingModeDisabled) - // WindowResizingModeDisabled indicates the mode to disallow resizing the window, + // WindowResizingModeOnlyFullscreenEnabled indicates the mode to disallow resizing the window, // but allow to make the window fullscreen by a user. // This works only on macOS so far. // On the other platforms, this is the same as WindowResizingModeDisabled.