debug: fix memory debugger

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2025-07-16 11:17:13 -07:00
parent 953848ff9a
commit 872aadf279
2 changed files with 5 additions and 17 deletions

View File

@@ -169,19 +169,6 @@ if ui.visuals().dark_mode {
## Common Patterns
### Handling User Interactions
```rust
// For clickable elements
let response = ui.add(/* widget */);
if response.clicked() {
// Handle click
} else if response.hovered() {
// Show hover effect (often using show_pointer())
crate::show_pointer(ui);
}
```
### Hover Previews
```rust