optozorax/egui-macroquad

Usage of egui Context.set_pixels_per_point don't work

buxx opened this issue · 1 comments

buxx commented

Hello,

I'm trying to use Context.set_pixels_per_point don't work function, but it has no effect. Example :by modifying README example :

        egui_macroquad::ui(|egui_ctx| {
            egui::Window::new("egui ❤ macroquad").show(egui_ctx, |ui| {
                ui.ctx().set_pixels_per_point(2.0);
                ui.label("Test");
            });
        });

Note : I tried to call it with egui_macroquad::cfg(|egui_cfg| egui_cfg.set_pixels_per_point(2.0)); without effect too.

Do you know why it has no effect ?

buxx commented

Just realized what is a egui-miniquad bug. I opened issues here : not-fl3/egui-miniquad#39