Skip to content

Commit c0fde41

Browse files
authored
bumbed egui and egui_extras to 0.23.0, fixed warnings (#185)
1 parent 93150a8 commit c0fde41

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ presser = { version = "0.3" }
2727
# such as the ability to link/load a Vulkan library.
2828
ash = { version = ">=0.34, <=0.37", optional = true, default-features = false, features = ["debug"] }
2929
# Only needed for visualizer.
30-
egui = { version = "0.22", optional = true, default-features = false }
31-
egui_extras = { version = "0.22", optional = true, default-features = false }
30+
egui = { version = "0.23", optional = true, default-features = false }
31+
egui_extras = { version = "0.23", optional = true, default-features = false }
3232

3333
[target.'cfg(windows)'.dependencies]
3434
# Only needed for public-winapi interop helpers

src/visualizer/memory_chunks.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ pub(crate) fn render_memory_chunks_ui<'a>(
9595
if ui.is_rect_visible(resp.rect) {
9696
ui.painter().rect(
9797
resp.rect,
98-
egui::Rounding::none(),
98+
egui::Rounding::ZERO,
9999
color_scheme
100100
.get_allocation_type_color(data[cursor_idx].allocation_type),
101101
egui::Stroke::new(1.0, Color32::BLACK),

0 commit comments

Comments
 (0)