[Bug 1307619] Re: All Qt5 applications' menu bar is missing at non-Unity DEs after appmenu-qt5 installed

2017-03-13 Thread James
Fresh installation of Ubuntu 16.04LTS (Unity) and QT Creator v5.8.

The UI menu appears when opening a project which defaults to source code
edit. The menu disappears when shifting to UI layout / designer.
Returning to source code edit, the menu fails to reappear. I have tried
the "workaround", which does not work... around..

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1307619

Title:
  All Qt5 applications' menu bar is missing at non-Unity DEs after
  appmenu-qt5 installed

To manage notifications about this bug go to:
https://bugs.launchpad.net/appmenu-qt5/+bug/1307619/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1307619] Re: All Qt5 applications' menu bar is missing at non-Unity DEs after appmenu-qt5 installed

2017-01-24 Thread thieuquangtuan
I have the same problem on Ubuntu Mate 16.10
The menu bar, left toolbar,... are missing when i launch Qt Creator 4.2.1
I have tried "sudo apt remove appmenu-qt5" but it didn't work.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1307619

Title:
  All Qt5 applications' menu bar is missing at non-Unity DEs after
  appmenu-qt5 installed

To manage notifications about this bug go to:
https://bugs.launchpad.net/appmenu-qt5/+bug/1307619/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1307619] Re: All Qt5 applications' menu bar is missing at non-Unity DEs after appmenu-qt5 installed

2017-01-18 Thread David Gottlieb
It's a desktop setting. Go into settings/appearance/behavior and check
the options forshow the menu in the window's title bar and for always
show menus. This fixed it for me - all my apps - QtCreator included -
now behave correctly.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1307619

Title:
  All Qt5 applications' menu bar is missing at non-Unity DEs after
  appmenu-qt5 installed

To manage notifications about this bug go to:
https://bugs.launchpad.net/appmenu-qt5/+bug/1307619/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1307619] Re: All Qt5 applications' menu bar is missing at non-Unity DEs after appmenu-qt5 installed

2017-01-01 Thread Jesse Talavera-Greenberg
I DID, however, fix this by uninstalling Unity.  I could't say which
specific package, unfortunately, as I just picked large swathes of them.

I never liked Unity anyway.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1307619

Title:
  All Qt5 applications' menu bar is missing at non-Unity DEs after
  appmenu-qt5 installed

To manage notifications about this bug go to:
https://bugs.launchpad.net/appmenu-qt5/+bug/1307619/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1307619] Re: All Qt5 applications' menu bar is missing at non-Unity DEs after appmenu-qt5 installed

2017-01-01 Thread Jesse Talavera-Greenberg
** Also affects: appmenu-qt5
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1307619

Title:
  All Qt5 applications' menu bar is missing at non-Unity DEs after
  appmenu-qt5 installed

To manage notifications about this bug go to:
https://bugs.launchpad.net/appmenu-qt5/+bug/1307619/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1307619] Re: All Qt5 applications' menu bar is missing at non-Unity DEs after appmenu-qt5 installed

2017-01-01 Thread Jesse Talavera-Greenberg
I have this problem even *without* `appmenu-qt5` installed.  I did have
`appmenu-qt` installed, but removing it did *not* fix the problem.  I'm
using MATE on Ubuntu 16.10.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1307619

Title:
  All Qt5 applications' menu bar is missing at non-Unity DEs after
  appmenu-qt5 installed

To manage notifications about this bug go to:
https://bugs.launchpad.net/appmenu-qt5/+bug/1307619/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1307619] Re: All Qt5 applications' menu bar is missing at non-Unity DEs after appmenu-qt5 installed

2016-09-03 Thread Dmitry Shachnev
The plan is to get rid of appmenu-qt5 soon, see bug 1612767 where this
is tracked.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1307619

Title:
  All Qt5 applications' menu bar is missing at non-Unity DEs after
  appmenu-qt5 installed

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1307619] Re: All Qt5 applications' menu bar is missing at non-Unity DEs after appmenu-qt5 installed

2016-07-06 Thread Want Privacy
It seems there is actually a simple fix for most of these problems.
As far as I can tell the root cause of the problem is as follows:

The appmenu-qt5 package somehow grabs all the menus from all
applications and sends them via D-Bus to the window manager. Of course
this will only work if the window manager is actually listening for
these kind of messages on D-Bus.

The appmenu-qt5 plugin will only do this, if according to the
documentation the environment variable QT_QPA_PLATFORMTHEME is set to
appmenu-qt5.

Now installing the appmenu-qt5 package will put a script under 
"/etc/profile.d/appmenu-qt5.sh" and this script is a single liner:
  export QT_QPA_PLATFORMTHEME=appmenu-qt5

So the environment variable is UNCONDITIONALLY set. I think this is just plain 
wrong, since the assumption that ALL window managers will support this 
undocumented D-Bus menu forwarding mechanism is rather weird. 
I think the script "/etc/profile.d/appmenu-qt5.sh" should check if Unity is 
running and ONLY THEN set the environment variable.
For example something like this:

  if [ "$DESKTOP_SESSION" = "ubuntu" ]; then
export QT_QPA_PLATFORMTHEME=appmenu-qt5
  fi

Note: I am not an Ubuntu wizard, so I am not sure what the best way is
how to check for Unity in a bash script. I at least think the above
would work...

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1307619

Title:
  All Qt5 applications' menu bar is missing at non-Unity DEs after
  appmenu-qt5 installed

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1307619] Re: All Qt5 applications' menu bar is missing at non-Unity DEs after appmenu-qt5 installed

2016-01-06 Thread achevrier
Hi. This bug of absence of menu bar affects also the usage of OPENSCAD when 
used under ubuntu 14-04 and gnome-shell.
OPENSCAD menu bar is accessible under Ubuntu14-04 UNITY (or METACITY ...) with 
appmenu-qt5 installed.
But, under gnome-shell+Ubuntu14-04, with appmenu-qt5 installed, the menu bar is 
not accessible (no menu bar at all). 
However, under gnome-shell+ubuntu14-04, uninstalling appmenu-qt5 allows to 
access to the menu of OPENSCAD. The menu bar is present. However, the behaviour 
to acess to sub-items of menu bar, works in 2 steps: 1/ clic one time on the 
item menu does not show the subitem; 2/ reclic again on the same menu item 
allows to get the subitems.
And, with appmenu-qt5 uninstalled under Ubuntu14-04 UNITY, the menu bar is 
still visible and accessible, but its behaviour to access to sub-items is also 
changed (in 2 clic instead of 1 clic).

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1307619

Title:
  All Qt5 applications' menu bar is missing at non-Unity DEs after
  appmenu-qt5 installed

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1307619] Re: All Qt5 applications' menu bar is missing at non-Unity DEs after appmenu-qt5 installed

2015-11-30 Thread Vdragon
Hi, I changed the bug title because it affect other Qt5
application(ReText) in order to duplicate Bug #1521176 .


** Summary changed:

- Qt Creator Menu bar is missing at Gnome3 or KDE Desktop
+ All Qt5 applications' menu bar is missing at non-Unity DEs after appmenu-qt5 
installed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1307619

Title:
  All Qt5 applications' menu bar is missing at non-Unity DEs after
  appmenu-qt5 installed

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

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs