Skip to content

Commit

Permalink
chore: go back to origin example
Browse files Browse the repository at this point in the history
  • Loading branch information
Decodetalkers committed Oct 6, 2024
1 parent 606e53c commit e3980b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions iced_examples/counter/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,8 @@ impl Application for Counter {

fn update(&mut self, message: Message) -> Command<Message> {
match message {
Message::IcedEvent(_event) => {
//println!("hello {event:?}");
Message::IcedEvent(event) => {
println!("hello {event:?}");
Command::none()
}
Message::IncrementPressed => {
Expand Down

0 comments on commit e3980b8

Please sign in to comment.