From 9698e6fe7ff3c8f5907c5840bc092ae4be7b599c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A1ll=20Haraldsson?= Date: Sun, 28 Nov 2021 20:25:29 +0000 Subject: [PATCH] async is no longer the default Was changed in #208 --- src/AtomShell/window.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/AtomShell/window.jl b/src/AtomShell/window.jl index 9f2ac64..6bc0b28 100644 --- a/src/AtomShell/window.jl +++ b/src/AtomShell/window.jl @@ -16,12 +16,12 @@ end """ Window() - Window(electron_options::Dict; async=true) + Window(electron_options::Dict; async=false) Create and open a new Window through Electron. -If `async==false`, this function blocks until the Window is fully initialized -and ready for you to communicate with it via javascript or the Blink API. +If `async==true`, this function doen't block until the Window is fully initialized +and ready for you to communicate with it via JavaScript or the Blink API. The `electron_options` dict is used to initialize the Electron window. See here for the full set of Electron options: