mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
fix: raise existing emote popups from behind other windows (macOS) (#3713)
Co-authored-by: pajlada <rasmus.karlsson@pajlada.com>
This commit is contained in:
parent
b2ed4c0843
commit
66b9b04401
|
@ -16,6 +16,7 @@
|
||||||
- Bugfix: Fixed certain settings dialogs appearing behind the main window, when `Always on top` was used. (#3679)
|
- 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)
|
- Bugfix: Fixed an issue in the emote picker where an emotes tooltip would not properly disappear. (#3686)
|
||||||
- Bugfix: Fixed incorrect spacing of settings icons at high DPI. (#3698)
|
- Bugfix: Fixed incorrect spacing of settings icons at high DPI. (#3698)
|
||||||
|
- Bugfix: Fixed existing emote popups not being raised from behind other windows when refocusing them on macOS (#3713)
|
||||||
- Dev: Use Game Name returned by Get Streams instead of querying it from the Get Games API. (#3662)
|
- Dev: Use Game Name returned by Get Streams instead of querying it from the Get Games API. (#3662)
|
||||||
|
|
||||||
## 2.3.5
|
## 2.3.5
|
||||||
|
|
|
@ -210,6 +210,7 @@ void SplitInput::openEmotePopup()
|
||||||
int(500 * this->emotePopup_->scale()));
|
int(500 * this->emotePopup_->scale()));
|
||||||
this->emotePopup_->loadChannel(this->split_->getChannel());
|
this->emotePopup_->loadChannel(this->split_->getChannel());
|
||||||
this->emotePopup_->show();
|
this->emotePopup_->show();
|
||||||
|
this->emotePopup_->raise();
|
||||||
this->emotePopup_->activateWindow();
|
this->emotePopup_->activateWindow();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue