Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Prev Previous commit
Next Next commit
Update crates/viewer/re_viewer/src/ui/memory_panel.rs
case consistency

Co-authored-by: Andreas Reich <[email protected]>
  • Loading branch information
IsseW and Wumpf authored Sep 2, 2025
commit 88abea349933cfb27aa48214832d97add19792e6
4 changes: 2 additions & 2 deletions crates/viewer/re_viewer/src/ui/memory_panel.rs
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,8 @@ impl MemoryPanel {
.num_columns(3)
.show(ui, |ui| {
ui.label(egui::RichText::new("Name").underline());
ui.label(egui::RichText::new("Memory (cpu)").underline());
ui.label(egui::RichText::new("Memory (gpu)").underline());
ui.label(egui::RichText::new("Memory (CPU)").underline());
ui.label(egui::RichText::new("Memory (GPU)").underline());
ui.end_row();

for item in &report.per_cache_item_info {
Expand Down