Skip to content

Commit

Permalink
Iterate on transactions
Browse files Browse the repository at this point in the history
  • Loading branch information
matta committed Jun 21, 2024
1 parent 944f034 commit 7ffe7d6
Show file tree
Hide file tree
Showing 4 changed files with 216 additions and 157 deletions.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pub fn save_name() -> PathBuf {
}

fn handle_key_event(state: &mut ui_state::State, key_event: crossterm::event::KeyEvent) {
// TODO: do this combinding earlier, properly.
// TODO: do this combining earlier, properly.
let key_combination: crokey::KeyCombination = key_event.into();

if let Some(screen) = state.current_screen.take() {
Expand Down
3 changes: 2 additions & 1 deletion src/persist/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
pub(crate) use document::{load_tasks, save_tasks, TaskList};
pub(crate) use task::{Task, TaskId};

pub(crate) use self::store::{MemoryStore, Store};
pub(crate) use self::store::memory::MemoryStore;
pub(crate) use self::store::Store;

mod container;
mod crc;
Expand Down
Loading

0 comments on commit 7ffe7d6

Please sign in to comment.