summaryrefslogtreecommitdiffstats
path: root/src/app.rs
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2023-01-15 12:06:19 -0500
committerGitHub <noreply@github.com>2023-01-15 12:06:19 -0500
commit571ec08291cb1203aee79490c723124770dbdf7b (patch)
tree8a76e9457571e9c775b47ce3cf22a00c8853569a /src/app.rs
parent316891d476160502017e5bf5fcc8f327c00bb157 (diff)
other: skip battery duration draw if unknown (#974)
* other: skip battery duration draw if unknown * increase others * update changelog
Diffstat (limited to 'src/app.rs')
-rw-r--r--src/app.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app.rs b/src/app.rs
index 55089d34..bad8667b 100644
--- a/src/app.rs
+++ b/src/app.rs
@@ -1183,7 +1183,7 @@ impl App {
'k' => self.on_up_key(),
'j' => self.on_down_key(),
'f' => {
- self.frozen_state.toggle(&self.data_collection); // TODO: Unthawing should force a full data refresh and redraw immediately.
+ self.frozen_state.toggle(&self.data_collection); // TODO: Thawing should force a full data refresh and redraw immediately.
}
'c' => {
if let BottomWidgetType::Proc = self.current_widget.widget_type {