From b0f598910f1f8bc8db6b65a0f01b1950ed7c3841 Mon Sep 17 00:00:00 2001 From: Akshay Nair Date: Sat, 26 Jul 2025 16:59:35 +0530 Subject: Add web.view.expose for simple lua->js interop in decorations --- src/widgets/WebViewStack.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/widgets/WebViewStack.cpp') diff --git a/src/widgets/WebViewStack.cpp b/src/widgets/WebViewStack.cpp index 698cb88..9ec8570 100644 --- a/src/widgets/WebViewStack.cpp +++ b/src/widgets/WebViewStack.cpp @@ -328,3 +328,8 @@ void WebViewStack::set_html(const QString &html, WebViewId webview_id) { webview->setHtml(html); } + +void WebViewStack::expose_rpc_function(const QString &name, const RpcFunc & /* unused */, + WebViewId /* unused */) { + qDebug() << "expose_rpc_function: NOT IMPLEMENTED" << name; +} -- cgit v1.3.1