Add missing tooltip hide on ChannelView leave event (#3686)

This commit is contained in:
kornes
2022-04-24 15:23:23 +00:00
committed by GitHub
parent e8c73ba4af
commit f170d31ab5
2 changed files with 3 additions and 0 deletions
+1
View File
@@ -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
+2
View File
@@ -1235,6 +1235,8 @@ void ChannelView::enterEvent(QEvent *)
void ChannelView::leaveEvent(QEvent *)
{
TooltipWidget::instance()->hide();
this->unpause(PauseReason::Mouse);
this->queueLayout();