Mohammed Alyousef
Mohammed Alyousef
Hello I'm not sure I understood the question. The seq parameter is used to match methods using webview's internal RPC engine. The req/content parameter is the arguments passed to the...
Yeah I finally tried on Windows also, and I see what you mention. I think it's this issue here: https://github.com/webview/webview/issues/498
I think it's a similar problem to https://github.com/fltk-rs/fltk-webview/issues/14 Basically it's better to keep the size of the webview window fixed since resizing/rescaling causes issues. To keep it fixed, it can...
Supporting this is possible but it would require a substantial amount of work. Made more difficult by each distro/os building FLTK with a different set of default features or being...
You’re right. Looking at what a minimal linux image for deploying an executable is more practical. Also it appears linuxdeploy sometimes misses some libs and has some other issues.
Hello Unfortunately this isn’t supported currently.
set_opts should work. Can you confirm this code works for you: ```rust use fltk::{ app, button, prelude::{GroupExt, WidgetExt, WidgetBase}, window, }; use fltk_table::{SmartTable, TableOpts}; fn main() { let app =...
It might be that the table is dead locking, I'll have to investigate further. Anyways, the issue is reproducible with the following: ```rust use fltk::{prelude::*, *}; use fltk_table::{SmartTable, TableOpts}; fn...
I've tried replacing std::sync::Mutex with parking_lot::Mutex and enabling deadlock_detection and it seems there are no deadlocks. I think the issue is mainly is within FLTK but I can't pinpoint it....
From what I understand, FLTK's table widget has 2 main apis, one for handling (viewing/modifying) large data, which is based on simple drawing of cells and data via Table::draw_cell. Another...