From 3a8ed37f491e2bf63395632bb9e98c6ed198ae67 Mon Sep 17 00:00:00 2001 From: lilly lizard <44878819+lilly-lizard@users.noreply.github.com> Date: Sun, 19 Nov 2023 07:38:09 +1300 Subject: [PATCH] Mention that the trace! macro was removed in the 0.23.0 changelog (#3567) Was trying to figure out why `trace!` was removed in 0.23 and realized it wasn't in the changelog. It was removed as part of [#3391](https://github.com/emilk/egui/pull/3391) --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e6d0447..2d428fe7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -51,7 +51,7 @@ egui_extras::install_image_loaders(egui_ctx); * Support images with rounded corners [#3257](https://github.com/emilk/egui/pull/3257) * Change focused widget with arrow keys [#3272](https://github.com/emilk/egui/pull/3272) (thanks [@TimonPost](https://github.com/TimonPost)!) * Add opt-in `puffin` feature to egui [#3298](https://github.com/emilk/egui/pull/3298) -* Add debug-option to show a callstack to the widget under the mouse [#3391](https://github.com/emilk/egui/pull/3391) +* Add debug-option to show a callstack to the widget under the mouse and removed the `trace!` macro as this is more useful [#3391](https://github.com/emilk/egui/pull/3391) * Add `Context::open_url` and `Context::copy_text` [#3380](https://github.com/emilk/egui/pull/3380) * Add `Area::constrain_to` and `Window::constrain_to` [#3396](https://github.com/emilk/egui/pull/3396) * Add `Memory::area_rect` [#3161](https://github.com/emilk/egui/pull/3161) (thanks [@tosti007](https://github.com/tosti007)!)