made export remember where the last save location was

This commit is contained in:
grimsace
2026-04-20 14:04:59 -05:00
parent 5227aa4b4d
commit d7cf07756d
3 changed files with 24 additions and 2 deletions
+2
View File
@@ -131,6 +131,7 @@ pub struct UiSettings {
pub export_height: u32,
pub allow_export_aspect_change: bool,
pub export_show_grid: bool,
pub last_export_path: Option<String>,
pub add_tool: AddTool,
pub add_text_value: String,
pub min_start_marker_size: usize,
@@ -184,6 +185,7 @@ impl Default for UiSettings {
export_height: 1080,
allow_export_aspect_change: false,
export_show_grid: true,
last_export_path: None,
add_tool: AddTool::None,
add_text_value: "Text".to_string(),
min_start_marker_size: 1,