changed image display

This commit is contained in:
Grimsace
2026-02-09 10:35:28 -06:00
parent 2a36eb8619
commit 671cd63c6f
3 changed files with 85 additions and 5 deletions
+2
View File
@@ -56,6 +56,7 @@ type Settings struct {
// General settings
Seed int64 `json:"seed"`
LastExportPath string `json:"last_export_path"`
ImageViewState int `json:"image_view_state"`
}
// Save saves the current settings to a JSON file in the user's config directory.
@@ -141,6 +142,7 @@ func LoadSettings() (*Settings, error) {
MaxBuildingComplexity: 3,
BuildingComplexityRatio: 50,
LastExportPath: homeDir,
ImageViewState: 0,
}, nil
}
return nil, err