add some missing docs

This commit is contained in:
Simon Gardling
2022-05-24 12:40:41 -04:00
parent 6a87a5c0a3
commit 6d76758223

View File

@@ -26,8 +26,10 @@ pub struct AppSettings {
/// Max value for calculating an /// Max value for calculating an
pub integral_max_x: f64, pub integral_max_x: f64,
/// Minimum x bound of plot
pub min_x: f64, pub min_x: f64,
/// Maximum x bound of plot
pub max_x: f64, pub max_x: f64,
/// Stores whether or not integral settings have changed /// Stores whether or not integral settings have changed
@@ -66,9 +68,16 @@ impl const Default for AppSettings {
/// Used to store the opened of windows/widgets /// Used to store the opened of windows/widgets
struct Opened { struct Opened {
/// Help window
pub help: bool, pub help: bool,
/// Info window
pub info: bool, pub info: bool,
/// Sidepanel
pub side_panel: bool, pub side_panel: bool,
/// Welcome introduction
pub welcome: bool, pub welcome: bool,
} }