From f170d31ab54b4a4b952a553957a9a851591ba97f Mon Sep 17 00:00:00 2001 From: kornes <28986062+kornes@users.noreply.github.com> Date: Sun, 24 Apr 2022 15:23:23 +0000 Subject: [PATCH] Add missing tooltip hide on ChannelView leave event (#3686) --- CHANGELOG.md | 1 + src/widgets/helper/ChannelView.cpp | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9384836e..9aeea040 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ - Minor: Add information about the user's operating system in the About page. (#3663) - Bugfix: Fixed live notifications for usernames containing uppercase characters. (#3646) - Bugfix: Fixed certain settings dialogs appearing behind the main window, when `Always on top` was used. (#3679) +- Bugfix: Fixed an issue in the emote picker where an emotes tooltip would not properly disappear. (#3686) - Dev: Use Game Name returned by Get Streams instead of querying it from the Get Games API. (#3662) ## 2.3.5 diff --git a/src/widgets/helper/ChannelView.cpp b/src/widgets/helper/ChannelView.cpp index 769f1e29..c938ceee 100644 --- a/src/widgets/helper/ChannelView.cpp +++ b/src/widgets/helper/ChannelView.cpp @@ -1235,6 +1235,8 @@ void ChannelView::enterEvent(QEvent *) void ChannelView::leaveEvent(QEvent *) { + TooltipWidget::instance()->hide(); + this->unpause(PauseReason::Mouse); this->queueLayout();