summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2022-12-30 00:56:27 -0500
committerGitHub <noreply@github.com>2022-12-30 00:56:27 -0500
commit21a21b86c0bbfd02ae21e0602a02d1c30cb264fb (patch)
tree60e5eedc45e7bd943958e05e0caca4a10feb0b6d /src
parent32da5f39bb2ee74543bce607249df15885d3cf47 (diff)
ci: clean all workflow caches to script (#936)
Diffstat (limited to 'src')
-rw-r--r--src/bin/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/main.rs b/src/bin/main.rs
index bbad61b3..806efe3b 100644
--- a/src/bin/main.rs
+++ b/src/bin/main.rs
@@ -158,7 +158,7 @@ fn main() -> Result<()> {
if let Ok(recv) = receiver.recv_timeout(Duration::from_millis(TICK_RATE_IN_MILLISECONDS)) {
match recv {
BottomEvent::Resize => {
- try_drawing(&mut terminal, &mut app, &mut painter)?;
+ try_drawing(&mut terminal, &mut app, &mut painter)?; // FIXME: This is bugged with frozen?
}
BottomEvent::KeyInput(event) => {
if handle_key_event_or_break(event, &mut app, &collection_thread_ctrl_sender) {