Fix dpi scaling on linux

This commit is contained in:
Philip Kristoffersen
2022-12-27 20:25:24 +01:00
parent 2c679adec8
commit df7f0e63a5
2 changed files with 1 additions and 4 deletions
+1 -1
View File
@@ -332,7 +332,7 @@ impl MyEguiApp {
fn setup(ctx: &egui::Context) {
#[cfg(target_family = "unix")]
ctx.set_pixels_per_point(1.0);
ctx.set_pixels_per_point(0.999);
let mut style: egui::Style = (*ctx.style()).clone();
create_style(&mut style);