Mohammed Alyousef

Results 125 comments of Mohammed Alyousef

It seem unrelated to gdiplus as well if versions before 1.0.16 also exhibit the same behavior.

Yeah it's probably better since they might ask some machine and env specific questions.

I'm not sure if just changing the default font of an application might fix the issue: ```rust let font = Font::load_font("emojisupportingfont.ttf").unwrap(); Font::set_font(Font::Helvetica, &font); ``` Testing on wsl2 with xserver, I...

I tried your repro on windows and linux, and I can't reproduce. Also the longer I keep the dialog the longer the time in the message: ``` Time elapsed in...

I'm not getting these freezes while testing the same code. Does the code you posted reproduce the problem for you?

Which fltk version are you using? Can you try with this code: ```rust use std::path::{Path, PathBuf}; use fltk::{ app::*, button::*, dialog::*, frame::Frame, prelude::*, text::{TextBuffer, TextDisplay}, window::DoubleWindow, }; const MAX_W: u32...

Can you run `cargo update` then also try with a different image file?

Yeah I’m on Windows 10. Couldn’t reproduce with neither native builds nor on wsl. it could be a channel problem (crossbeam-channel or an fltk problem), I’ll send another piece of...

This no longer uses channels: ```rust use std::path::{Path, PathBuf}; use fltk::{ app::*, button::*, dialog::*, frame::Frame, prelude::*, text::{TextBuffer, TextDisplay}, window::DoubleWindow, }; const MAX_W: u32 = 400; const MAX_H: u32 = 400;...

I have run it many times (upto 20) and as fast as I could, trying to replicate. Does it also appear to you when running in release mode?