fix: add missing set_wants_to_be_visible(true)
to NativeWindowMac::ShowInactive()
(#40546)
* fix: add missing set_wants_to_be_visible(true) to NativeWindowMac::ShowInactive() * add test
This commit is contained in:
parent
b2fcc15ec7
commit
39ee94089a
2 changed files with 30 additions and 0 deletions
|
@ -534,6 +534,8 @@ void NativeWindowMac::Show() {
|
|||
}
|
||||
|
||||
void NativeWindowMac::ShowInactive() {
|
||||
set_wants_to_be_visible(true);
|
||||
|
||||
// Reattach the window to the parent to actually show it.
|
||||
if (parent())
|
||||
InternalSetParentWindow(parent(), true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue