summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorClementTsang <cjhtsang@uwaterloo.ca>2022-01-01 04:16:27 -0500
committerClementTsang <cjhtsang@uwaterloo.ca>2022-01-01 04:16:27 -0500
commit027390683ffefa28ac4ad7a6f3b2051a1c56065d (patch)
tree009f825cf22896806d829716efcb352be66c0317 /src
parent2fb17df7862ed67f970172c37684381eaa9cd3e2 (diff)
tmp
Diffstat (limited to 'src')
-rw-r--r--src/tuine/component/base/mod.rs3
-rw-r--r--src/tuine/component/base/selectable_block.rs4
2 files changed, 0 insertions, 7 deletions
diff --git a/src/tuine/component/base/mod.rs b/src/tuine/component/base/mod.rs
index 4ab737b7..ba95516d 100644
--- a/src/tuine/component/base/mod.rs
+++ b/src/tuine/component/base/mod.rs
@@ -24,6 +24,3 @@ pub use padding::*;
pub mod time_graph;
pub use time_graph::TimeGraph;
-
-pub mod selectable_block;
-pub use selectable_block::SelectableBlock;
diff --git a/src/tuine/component/base/selectable_block.rs b/src/tuine/component/base/selectable_block.rs
deleted file mode 100644
index 52ec5364..00000000
--- a/src/tuine/component/base/selectable_block.rs
+++ /dev/null
@@ -1,4 +0,0 @@
-/// A [`SelectableBlock`] is an extension around a [`Block`], that adds selection
-/// indication logic and binds [`Event::Keyboard`] events to **always** be captured by
-/// the children of the [`SelectableBlock`].
-pub struct SelectableBlock {}