From 17a3a759591b68bc91abb67b4f18b3aa832d2850 Mon Sep 17 00:00:00 2001 From: Hassan DRAGA Date: Thu, 11 Jul 2024 15:28:12 -0400 Subject: [PATCH] Core - Change WebView to Webview (macOS WebKit Conflict) --- src/webui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/webui.c b/src/webui.c index ae197783..4bbd6d8b 100644 --- a/src/webui.c +++ b/src/webui.c @@ -1649,7 +1649,7 @@ bool webui_show_browser(size_t window, const char* content, size_t browser) { _webui_window_t* win = _webui.wins[window]; // Show the window using a specific browser only - win->allow_webview = (browser == WebView ? true : false); + win->allow_webview = (browser == Webview ? true : false); // Show for all connected clients return _webui_show(win, NULL, content, browser); @@ -7056,7 +7056,7 @@ static bool _webui_show_window(_webui_window_t* win, struct mg_connection* clien #ifdef WEBUI_LOG printf("[Core]\t\t_webui_show_window() -> WebView Found\n"); #endif - win->current_browser = WebView; + win->current_browser = Webview; runWebView = true; } else {