Update to egui version 0.33, also fix weird spacing between inputs

This commit is contained in:
elvis
2025-10-29 18:11:48 +01:00
parent 284f136409
commit cce3b5a7a0
6 changed files with 84 additions and 97 deletions

View File

@ -8,8 +8,8 @@ use serde::{Deserialize, Serialize};
use super::*;
use crate::scale::Scale;
const MIN_ZOOM: f32 = 0.2;
const MAX_ZOOM: f32 = 2.0;
const MIN_ZOOM: f32 = 0.1;
const MAX_ZOOM: f32 = 2.5;
#[derive(Clone)]
#[cfg_attr(feature = "persistence", derive(Serialize, Deserialize))]