Skip to content

Commit

Permalink
fix: enable mouse hover again
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioRibera committed Mar 17, 2023
1 parent 80e3466 commit c7aae61
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/ui/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,9 +154,9 @@ impl Application for MainApp {
};

container(
mouse_listener(content), // .on_mouse_exit(MainMessage::DaemonEvent(
// daemon::Event::Message(daemon::Message::ToggleVisibility(false)),
// )),
mouse_listener(content).on_mouse_exit(MainMessage::DaemonEvent(
daemon::Event::Message(daemon::Message::ToggleVisibility(false)),
)),
)
.width(Length::Fill)
.height(Length::Fill)
Expand Down

0 comments on commit c7aae61

Please sign in to comment.