Skip to content

Commit 68ffb9d

Browse files
authored
🚦 Allow egui 0.27 (#220)
* Allow egui version 0.27 * Remove redundant duplicate strong call
1 parent 5309914 commit 68ffb9d

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ presser = { version = "0.3" }
3030
# such as the ability to link/load a Vulkan library.
3131
ash = { version = ">=0.34, <=0.37", optional = true, default-features = false, features = ["debug"] }
3232
# Only needed for visualizer.
33-
egui = { version = ">=0.24, <=0.26", optional = true, default-features = false }
34-
egui_extras = { version = ">=0.24, <=0.26", optional = true, default-features = false }
33+
egui = { version = ">=0.24, <=0.27", optional = true, default-features = false }
34+
egui_extras = { version = ">=0.24, <=0.27", optional = true, default-features = false }
3535

3636
[target.'cfg(any(target_os = "macos", target_os = "ios"))'.dependencies]
3737
metal = { version = "0.27.0", default-features = false, features = ["link", "dispatch",] }

src/visualizer/allocation_reports.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ pub(crate) fn render_allocation_reports_ui(
5151

5252
fn header_button(ui: &mut Ui, label: &str) -> Response {
5353
let label = WidgetText::from(label).strong();
54-
let label = Label::new(label.strong()).sense(Sense::click());
54+
let label = Label::new(label).sense(Sense::click());
5555
ui.add(label)
5656
}
5757

0 commit comments

Comments
 (0)