diff options
Diffstat (limited to 'src/state/editor/bar.rs')
| -rw-r--r-- | src/state/editor/bar.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/state/editor/bar.rs b/src/state/editor/bar.rs new file mode 100644 index 0000000..752d021 --- /dev/null +++ b/src/state/editor/bar.rs @@ -0,0 +1,8 @@ +use crate::state::{bar::BarState, GlobalState}; + +BarState!( + EditorBarState, + (), + GlobalState::instance().editor.bar, + GlobalState::instance_mut().editor.bar +); |