-
Is there a way to disable the "inspect element" from the context menu? |
Beta Was this translation helpful? Give feedback.
Answered by
ttytm
Aug 18, 2023
Replies: 1 comment 2 replies
-
Yes, this is possible by don't passing webview.create() Or maybe maybe adding a comptime conditon fits your needs. E.g. mut app := App{
w: webview.create(
debug: $if prod { false } $else { true }
)
} |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
ttytm
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, this is possible by don't passing
(debug: true)
to the create function.E.g.:
webview.create()
Or maybe maybe adding a comptime conditon fits your needs. E.g.