Blaine

Results 87 comments of Blaine
trafficstars

The title bar is handled by the respective gui apis, winapi for windows, gtk for linux and i guess cocoa? for macOS. You could in theory do one of two...

> How difficult was that switch? Would you recommend that? @simonbuchan I know you didn't ask me. But I would still like to pitch in. Even I switched to Tauri,...

I am unsure as to what you mean by "won't get loaded at the next webpage load". Aren't files stored to localstorage consistent between sessions?

You could build the webview first then use eval to execute the necessary javascript and then run the webview.. ```rust let mut webview = builder()....... ...build().unwrap(); webview.eval(r#" your js code...

Ah shoot my apologies, I got confused between exec and eval for a second since I was using qt recently... Anyways, Glad it works.

If you have no other issues, close the Issue btw!

Please give tauri a shot https://github.com/tauri-apps/tauri

I have implemented a function call to minimize the window to tray for gtk and edge in #200 It is currently availabe in my fork, if you are interested. It...

I am confused, ctrl +/- by default should zoom in... [this](https://stackoverflow.com/questions/8925573/javascript-mouse-wheel-zooming-for-a-web-page) should tell you how to use scroll wheel as well

I will look into the docs for winrt webview, gtk webview and cocoa to see if we have a method to implement scale, but until then. You could use javascript....