diff options
Diffstat (limited to 'src/actions.rs')
| -rw-r--r-- | src/actions.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/actions.rs b/src/actions.rs index 1d60820..33289b1 100644 --- a/src/actions.rs +++ b/src/actions.rs @@ -15,6 +15,7 @@ // along with this program. If not, see <http://www.gnu.org/licenses/>. use std::path::PathBuf; +use wmap_renderer::StageType; use crate::preferences::UserPreferences; @@ -43,7 +44,7 @@ impl ImageFormat { #[derive(Debug, Clone)] pub enum Action { ChangeOrientation, - StageTypeSelected(usize), + StageTypeSelected(StageType), SourceChanged, Zoom(f64), ZoomOut, |