diff --git a/src/overlays/watch.rs b/src/overlays/watch.rs index f9ed2c0..dc7cde6 100644 --- a/src/overlays/watch.rs +++ b/src/overlays/watch.rs @@ -745,6 +745,9 @@ fn overlay_button_up(control: &mut Control<(), ElemState>, _: &mut (), app: &mut "Right-click again to toggle.".into(), ) .submit(app); + } else { + Toast::new(format!("{} is now unlocked!", o.name).into(), "".into()) + .submit(app); } }), )); @@ -761,6 +764,12 @@ fn overlay_button_up(control: &mut Control<(), ElemState>, _: &mut (), app: &mut "Middle-click again to toggle.".into(), ) .submit(app); + } else { + Toast::new( + format!("{} is now interactable!", o.name).into(), + "".into(), + ) + .submit(app); } }), ));