Remove redundant pub

This commit is contained in:
Hanno Braun 2024-12-10 18:40:28 +01:00
parent 424f90643d
commit 9c82fae031

View File

@ -1,7 +1,7 @@
use crate::geometry::{Operation, OpsLog}; use crate::geometry::{Operation, OpsLog};
pub struct OperationView { pub struct OperationView {
pub ops_log: OpsLog, ops_log: OpsLog,
pub selected: usize, pub selected: usize,
} }