summaryrefslogtreecommitdiff
path: root/schist_desktop_gui/src/gui/components.rs
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2026-02-07 11:52:08 +0000
committerJoe Carstairs <me@joeac.net>2026-02-07 12:02:27 +0000
commit1664e741ad35ce52a01788c34029f0b2ea477e32 (patch)
treedd6bd7c83a7e834c75815a786d67b5188cdd1f48 /schist_desktop_gui/src/gui/components.rs
parent179878d12ba10ac242da2044f4c6dfe4d4829e59 (diff)
task-001: can navigate file screen options with keyboard
Diffstat (limited to 'schist_desktop_gui/src/gui/components.rs')
-rw-r--r--schist_desktop_gui/src/gui/components.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/schist_desktop_gui/src/gui/components.rs b/schist_desktop_gui/src/gui/components.rs
index b0f8faf..bb5590f 100644
--- a/schist_desktop_gui/src/gui/components.rs
+++ b/schist_desktop_gui/src/gui/components.rs
@@ -3,13 +3,15 @@ pub mod bucket_navigation_entry;
pub mod buckets_view;
pub mod button;
pub mod navigation;
+pub mod panel;
pub mod text;
pub mod transactions_view;
pub use balances_view::BalancesView;
pub use bucket_navigation_entry::BucketNavigationEntry;
pub use buckets_view::BucketsView;
-pub use button::{active_button, inactive_button, panel_button};
+pub use button::{button, panel_button};
pub use navigation::Navigation;
+pub use panel::Panel;
pub use text::Text;
pub use transactions_view::TransactionsView;