Merge pull request 'pkgs/clan-app: Refactor debugger' (#4949) from kenji/ke-debug-view-simplify into main

Reviewed-on: https://git.clan.lol/clan/clan-core/pulls/4949
This commit is contained in:
Kenji Berthold
2025-08-25 16:30:48 +00:00

View File

@@ -56,7 +56,8 @@ class Webview:
def _create_handle(self) -> None:
# Initialize the webview handle
handle = _webview_lib.webview_create(int(True), self.window)
with_debugger = True
handle = _webview_lib.webview_create(int(with_debugger), self.window)
callbacks: dict[str, Callable[..., Any]] = {}
# Since we can't use object.__setattr__, we'll initialize differently