qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Bug 1854204] [NEW] Menu is not clickable on OSX Catalina
@ 2019-11-27 18:54 Nikita Tsukanov
  2019-12-19 15:06 ` [Bug 1854204] " Peter Maydell
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: Nikita Tsukanov @ 2019-11-27 18:54 UTC (permalink / raw)
  To: qemu-devel

Public bug reported:

1) Run `qemu-system-x86_64`
2) Try to click on the main menu

Menu is not clickable until another window is activated and QEMU window
is activated again

** Affects: qemu
     Importance: Undecided
         Status: New

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1854204

Title:
  Menu is not clickable on OSX Catalina

Status in QEMU:
  New

Bug description:
  1) Run `qemu-system-x86_64`
  2) Try to click on the main menu

  Menu is not clickable until another window is activated and QEMU
  window is activated again

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1854204/+subscriptions


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug 1854204] Re: Menu is not clickable on OSX Catalina
  2019-11-27 18:54 [Bug 1854204] [NEW] Menu is not clickable on OSX Catalina Nikita Tsukanov
@ 2019-12-19 15:06 ` Peter Maydell
  2019-12-19 16:46 ` Nikita Tsukanov
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Peter Maydell @ 2019-12-19 15:06 UTC (permalink / raw)
  To: qemu-devel

Does this reproduce on earlier pre-Catalina OSX versions, or is it
Catalina-specific?

This is probably not going to be addressed unless somebody wants to
investigate and write a patch for it -- OSX support in QEMU is only very
barely maintained.

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1854204

Title:
  Menu is not clickable on OSX Catalina

Status in QEMU:
  New

Bug description:
  1) Run `qemu-system-x86_64`
  2) Try to click on the main menu

  Menu is not clickable until another window is activated and QEMU
  window is activated again

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1854204/+subscriptions


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug 1854204] Re: Menu is not clickable on OSX Catalina
  2019-11-27 18:54 [Bug 1854204] [NEW] Menu is not clickable on OSX Catalina Nikita Tsukanov
  2019-12-19 15:06 ` [Bug 1854204] " Peter Maydell
@ 2019-12-19 16:46 ` Nikita Tsukanov
  2019-12-19 17:16 ` Peter Maydell
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Nikita Tsukanov @ 2019-12-19 16:46 UTC (permalink / raw)
  To: qemu-devel

Catalina-specific. It also affects several UI toolkits. This workaround
https://stackoverflow.com/a/7602677 seems to help.

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1854204

Title:
  Menu is not clickable on OSX Catalina

Status in QEMU:
  New

Bug description:
  1) Run `qemu-system-x86_64`
  2) Try to click on the main menu

  Menu is not clickable until another window is activated and QEMU
  window is activated again

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1854204/+subscriptions


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug 1854204] Re: Menu is not clickable on OSX Catalina
  2019-11-27 18:54 [Bug 1854204] [NEW] Menu is not clickable on OSX Catalina Nikita Tsukanov
  2019-12-19 15:06 ` [Bug 1854204] " Peter Maydell
  2019-12-19 16:46 ` Nikita Tsukanov
@ 2019-12-19 17:16 ` Peter Maydell
  2019-12-19 18:33 ` Nikita Tsukanov
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Peter Maydell @ 2019-12-19 17:16 UTC (permalink / raw)
  To: qemu-devel

Thanks for the research. That looks like an OSX bug to me -- the simple
two-line set of operations to do this that previously worked now needs
some horribly complicated multi-stage sequence, and the first suggested
workaround is doing something strange involving the Finder and a 0.1
second delay which I am definitely suspicious of. Apple should fix their
OS to stop breaking applications :-)

The second suggested approach is essentially to add:
 
    SetSystemUIMode(kUIModeNormal, 0);
    [NSApp activateIgnoringOtherApps:YES];

which for us probably would want to go before the [NSApp run] (or at
least after we've created the sharedApplication).

It's a bit odd also that the stackoverflow question says this only
happens "if you don't call [TransformProcessType] early enough", because
QEMU calls that about as early as it is feasibly possible to do, very
near the top of main() in cocoa.m.

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1854204

Title:
  Menu is not clickable on OSX Catalina

Status in QEMU:
  New

Bug description:
  1) Run `qemu-system-x86_64`
  2) Try to click on the main menu

  Menu is not clickable until another window is activated and QEMU
  window is activated again

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1854204/+subscriptions


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug 1854204] Re: Menu is not clickable on OSX Catalina
  2019-11-27 18:54 [Bug 1854204] [NEW] Menu is not clickable on OSX Catalina Nikita Tsukanov
                   ` (2 preceding siblings ...)
  2019-12-19 17:16 ` Peter Maydell
@ 2019-12-19 18:33 ` Nikita Tsukanov
  2021-04-22  9:02 ` Thomas Huth
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: Nikita Tsukanov @ 2019-12-19 18:33 UTC (permalink / raw)
  To: qemu-devel

The workaround on SO was posted way back in 2011. It has initially
solved a different issue, I think.

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1854204

Title:
  Menu is not clickable on OSX Catalina

Status in QEMU:
  New

Bug description:
  1) Run `qemu-system-x86_64`
  2) Try to click on the main menu

  Menu is not clickable until another window is activated and QEMU
  window is activated again

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1854204/+subscriptions


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug 1854204] Re: Menu is not clickable on OSX Catalina
  2019-11-27 18:54 [Bug 1854204] [NEW] Menu is not clickable on OSX Catalina Nikita Tsukanov
                   ` (3 preceding siblings ...)
  2019-12-19 18:33 ` Nikita Tsukanov
@ 2021-04-22  9:02 ` Thomas Huth
  2021-04-22  9:26 ` Peter Maydell
  2021-05-09 15:12 ` Thomas Huth
  6 siblings, 0 replies; 8+ messages in thread
From: Thomas Huth @ 2021-04-22  9:02 UTC (permalink / raw)
  To: qemu-devel

The QEMU project is currently considering to move its bug tracking to
another system. For this we need to know which bugs are still valid
and which could be closed already. Thus we are setting older bugs to
"Incomplete" now.

If you still think this bug report here is valid, then please switch
the state back to "New" within the next 60 days, otherwise this report
will be marked as "Expired". Or please mark it as "Fix Released" if
the problem has been solved with a newer version of QEMU already.

Thank you and sorry for the inconvenience.


** Changed in: qemu
       Status: New => Incomplete

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1854204

Title:
  Menu is not clickable on OSX Catalina

Status in QEMU:
  Incomplete

Bug description:
  1) Run `qemu-system-x86_64`
  2) Try to click on the main menu

  Menu is not clickable until another window is activated and QEMU
  window is activated again

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1854204/+subscriptions


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug 1854204] Re: Menu is not clickable on OSX Catalina
  2019-11-27 18:54 [Bug 1854204] [NEW] Menu is not clickable on OSX Catalina Nikita Tsukanov
                   ` (4 preceding siblings ...)
  2021-04-22  9:02 ` Thomas Huth
@ 2021-04-22  9:26 ` Peter Maydell
  2021-05-09 15:12 ` Thomas Huth
  6 siblings, 0 replies; 8+ messages in thread
From: Peter Maydell @ 2021-04-22  9:26 UTC (permalink / raw)
  To: qemu-devel

Still a bug.


** Changed in: qemu
       Status: Incomplete => Confirmed

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1854204

Title:
  Menu is not clickable on OSX Catalina

Status in QEMU:
  Confirmed

Bug description:
  1) Run `qemu-system-x86_64`
  2) Try to click on the main menu

  Menu is not clickable until another window is activated and QEMU
  window is activated again

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1854204/+subscriptions


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug 1854204] Re: Menu is not clickable on OSX Catalina
  2019-11-27 18:54 [Bug 1854204] [NEW] Menu is not clickable on OSX Catalina Nikita Tsukanov
                   ` (5 preceding siblings ...)
  2021-04-22  9:26 ` Peter Maydell
@ 2021-05-09 15:12 ` Thomas Huth
  6 siblings, 0 replies; 8+ messages in thread
From: Thomas Huth @ 2021-05-09 15:12 UTC (permalink / raw)
  To: qemu-devel

This is an automated cleanup. This bug report has been moved to QEMU's
new bug tracker on gitlab.com and thus gets marked as 'expired' now.
Please continue with the discussion here:

 https://gitlab.com/qemu-project/qemu/-/issues/225


** Changed in: qemu
       Status: Confirmed => Expired

** Bug watch added: gitlab.com/qemu-project/qemu/-/issues #225
   https://gitlab.com/qemu-project/qemu/-/issues/225

-- 
You received this bug notification because you are a member of qemu-
devel-ml, which is subscribed to QEMU.
https://bugs.launchpad.net/bugs/1854204

Title:
  Menu is not clickable on OSX Catalina

Status in QEMU:
  Expired

Bug description:
  1) Run `qemu-system-x86_64`
  2) Try to click on the main menu

  Menu is not clickable until another window is activated and QEMU
  window is activated again

To manage notifications about this bug go to:
https://bugs.launchpad.net/qemu/+bug/1854204/+subscriptions


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2021-05-09 15:25 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-11-27 18:54 [Bug 1854204] [NEW] Menu is not clickable on OSX Catalina Nikita Tsukanov
2019-12-19 15:06 ` [Bug 1854204] " Peter Maydell
2019-12-19 16:46 ` Nikita Tsukanov
2019-12-19 17:16 ` Peter Maydell
2019-12-19 18:33 ` Nikita Tsukanov
2021-04-22  9:02 ` Thomas Huth
2021-04-22  9:26 ` Peter Maydell
2021-05-09 15:12 ` Thomas Huth

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).