From 3df74e26aa0170452720ea4ba10cfbdc42b3f6e9 Mon Sep 17 00:00:00 2001 From: fauxvillage <54483275+fauxvillage@users.noreply.github.com> Date: Thu, 15 Jul 2021 08:54:41 -0500 Subject: [PATCH] fix checkbox isMaximized in Windows_API_new tutorial (#893) --- tutorials/Window_API_new/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/Window_API_new/README.md b/tutorials/Window_API_new/README.md index 7a3d0a3036..f5b20238ee 100644 --- a/tutorials/Window_API_new/README.md +++ b/tutorials/Window_API_new/README.md @@ -299,7 +299,7 @@ fun main() = application { Row(verticalAlignment = Alignment.CenterVertically) { Checkbox( - state.placement == WindowPlacement.Fullscreen, + state.placement == WindowPlacement.Maximized, { state.placement = if (it) { WindowPlacement.Maximized