change the privacy modifiers on the ControlData

This commit is contained in:
2024-06-17 17:36:56 -05:00
parent 7d855e764f
commit 0339a2ee96
12 changed files with 82 additions and 29 deletions
+4 -4
View File
@@ -5,10 +5,10 @@ use std::ops::RangeInclusive;
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct SliderData {
pub(crate) name: String,
pub(crate) label: Option<String>,
pub(crate) min: i32,
pub(crate) max: i32,
pub name: String,
pub label: Option<String>,
pub min: i32,
pub max: i32,
}
impl Default for SliderData {