LongCatIsLooong 43aee92e61
Fix unresponsive mouse tooltip (#142282)
Fixes https://github.com/flutter/flutter/issues/142045

The intent of using `??=` was that if the tooltip is already scheduled for showing, rescheduling another show does nothing. But if the tooltip is already scheduled for dismissing, the `??=` won't cancel the dismiss timer and as a result the tooltip won't show. So the `??=` is now replaced by `=` to keep it consistent with the `_scheduleDismissTooltip` implementation.
2024-01-31 17:17:53 +00:00
..
2023-10-27 01:09:03 +00:00
2024-01-18 18:38:00 +01:00
2023-10-31 17:36:10 +00:00
2023-10-31 17:36:10 +00:00
2023-11-27 15:33:07 -08:00
2024-01-16 21:40:08 +00:00
2023-11-07 10:26:23 -08:00