File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Expand file tree Collapse file tree 2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ impl LogViewerApp {
137
137
138
138
if let Some ( data) = & mut self . data {
139
139
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.
141
141
// TODO 4: Remove hard coded "msg"
142
142
let heights: Vec < f32 > = data
143
143
. rows_iter ( )
@@ -253,7 +253,7 @@ impl LogViewerApp {
253
253
} ) ;
254
254
255
255
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.
257
257
let heights: Vec < f32 > = selected_values
258
258
. iter ( )
259
259
. map ( |x| ( 1f32 ) . max ( x. 1 . lines ( ) . count ( ) as f32 ) * text_height)
@@ -597,7 +597,7 @@ impl LogViewerApp {
597
597
} else {
598
598
"Click to Highlight warning"
599
599
} ;
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
601
601
if ui
602
602
. colored_label ( color, "(Field filtering enabled)" )
603
603
. on_hover_text ( hint_text)
Original file line number Diff line number Diff line change 3
3
mod app;
4
4
pub use app:: LogViewerApp ;
5
5
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/
You can’t perform that action at this time.
0 commit comments