Skip to content

Commit

Permalink
bumbed egui and egui_extras to 0.23.0, fixed warnings (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
XPXPv2 authored Oct 26, 2023
1 parent 93150a8 commit c0fde41
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ presser = { version = "0.3" }
# such as the ability to link/load a Vulkan library.
ash = { version = ">=0.34, <=0.37", optional = true, default-features = false, features = ["debug"] }
# Only needed for visualizer.
egui = { version = "0.22", optional = true, default-features = false }
egui_extras = { version = "0.22", optional = true, default-features = false }
egui = { version = "0.23", optional = true, default-features = false }
egui_extras = { version = "0.23", optional = true, default-features = false }

[target.'cfg(windows)'.dependencies]
# Only needed for public-winapi interop helpers
Expand Down
2 changes: 1 addition & 1 deletion src/visualizer/memory_chunks.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ pub(crate) fn render_memory_chunks_ui<'a>(
if ui.is_rect_visible(resp.rect) {
ui.painter().rect(
resp.rect,
egui::Rounding::none(),
egui::Rounding::ZERO,
color_scheme
.get_allocation_type_color(data[cursor_idx].allocation_type),
egui::Stroke::new(1.0, Color32::BLACK),
Expand Down

0 comments on commit c0fde41

Please sign in to comment.