Browse Source

Update note

Josh Engebretson 10 years ago
parent
commit
9e6a84db7f
1 changed files with 3 additions and 3 deletions
  1. 3 3
      Source/AtomicWebView/WebBrowserHost.cpp

+ 3 - 3
Source/AtomicWebView/WebBrowserHost.cpp

@@ -23,9 +23,6 @@ WebBrowserHost::WebBrowserHost(Context* context) : Object (context)
 
     CefMainArgs args(arguments.Size(), arguments.Size() ? (char**) &argv[0] : (char **) _argv);
 
-    // TODO: We're losing the main system menu items on OSX and cmd-q no longer works
-    // when we init CEF
-
     int result = CefExecuteProcess(args, nullptr, nullptr);
 
     if (result >= 0)
@@ -35,6 +32,9 @@ WebBrowserHost::WebBrowserHost(Context* context) : Object (context)
 
     CefSettings settings;
 
+    // TODO: We're losing the main system menu items on OSX and cmd-q no longer works
+    // when we call CefInitialize
+
     if (!CefInitialize(args, settings, nullptr, nullptr))
     {
         LOGERROR("CefInitialize - Error");