Skip to content

Commit 1ed78a2

Browse files
authored
Fix feathers gallery button info (#24062)
# Objective The `feathers gallery` example logs "Disabled button clicked!" when its "Primary" button is clicked. ## Solution Log "Primary button clicked!" instead.
1 parent 638c5dd commit 1ed78a2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

examples/ui/widgets/feathers_gallery.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ fn demo_column_1() -> impl Scene {
174174
flex_grow: 1.0,
175175
}
176176
on(|_activate: On<Activate>| {
177-
info!("Disabled button clicked!");
177+
info!("Primary button clicked!");
178178
})
179179
),
180180
(

0 commit comments

Comments
 (0)