Skip to content

Commit 7fece02

Browse files
committed
chore: reprioritize todos
1 parent e7fd9db commit 7fece02

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

src/app.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ impl LogViewerApp {
137137

138138
if let Some(data) = &mut self.data {
139139
table.body(|body| {
140-
// TODO 3: Figure out if calculating these values only once is worth it.
140+
// TODO 4: Figure out if calculating these values only once is worth it.
141141
// TODO 4: Remove hard coded "msg"
142142
let heights: Vec<f32> = data
143143
.rows_iter()
@@ -253,7 +253,7 @@ impl LogViewerApp {
253253
});
254254

255255
table.body(|body| {
256-
// TODO 3: Figure out if calculating these values only once is worth it.
256+
// TODO 4: Figure out if calculating these values only once is worth it.
257257
let heights: Vec<f32> = selected_values
258258
.iter()
259259
.map(|x| (1f32).max(x.1.lines().count() as f32) * text_height)
@@ -597,7 +597,7 @@ impl LogViewerApp {
597597
} else {
598598
"Click to Highlight warning"
599599
};
600-
// TODO 3: Add an option to select how fields are filter and not only exact match
600+
// TODO 4: Add an option to select how fields are filter and not only exact match
601601
if ui
602602
.colored_label(color, "(Field filtering enabled)")
603603
.on_hover_text(hint_text)

src/lib.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@
33
mod app;
44
pub use app::LogViewerApp;
55

6-
// TODO 3: Add button to set to current value if a field is selected
7-
// TODO 3: Support auto reload (look into watching for changes) https://watchexec.github.io/
8-
// TODO 3: Create a crate for egui based apps CI and replace the current CI.
6+
// TODO 4: Add button to set to current value if a field is selected
7+
// TODO 4: Support auto reload (look into watching for changes) https://watchexec.github.io/

0 commit comments

Comments
 (0)