[Bug 1312104] Re: Marble Menu Squashed/Unreadable

2014-12-19 Thread Jonathan Riddell
** Changed in: marble (Ubuntu Utopic)
   Status: Fix Committed = Fix Released

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

Title:
  Marble Menu Squashed/Unreadable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/marble/+bug/1312104/+subscriptions

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


[Bug 1312104] Re: Marble Menu Squashed/Unreadable

2014-12-19 Thread Jonathan Riddell
** Changed in: marble (Ubuntu)
   Status: Fix Committed = Fix Released

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

Title:
  Marble Menu Squashed/Unreadable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/marble/+bug/1312104/+subscriptions

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


[Bug 1312104] Re: Marble Menu Squashed/Unreadable

2014-05-05 Thread Launchpad Bug Tracker
This bug was fixed in the package marble - 4:4.13.0-0ubuntu1.1

---
marble (4:4.13.0-0ubuntu1.1) trusty; urgency=medium

  * Don't show marble-mobile desktop entry by setting Hidden=true to mark it
as deleted. This change is necessary because both marble and marble-mobile
ended up in the same package and provide equally named desktop entries
resulting in confusion over which marble is going to be started.
Should marble-mobile get a fixed desktop UI in a future patch release we
can look into splitting the packages properly to provide easy access to
marble-mobile.
The property is set through kubuntu_hide_marble_mobile.diff
LP: #1312104
 -- Harald Sitter apachelog...@kubuntu.org   Fri, 25 Apr 2014 16:40:21 +0200

** Changed in: marble (Ubuntu Trusty)
   Status: Fix Committed = Fix Released

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

Title:
  Marble Menu Squashed/Unreadable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/marble/+bug/1312104/+subscriptions

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


[Bug 1312104] Re: Marble Menu Squashed/Unreadable

2014-05-04 Thread Mathew Hodson
Fixed in Trusty with
https://launchpad.net/ubuntu/+source/marble/4:4.13.0-0ubuntu1.1

There is only one entry in the applications menu, and it launches the
desktop UI.

** Tags removed: verification-needed
** Tags added: verification-done

** Branch linked: lp:ubuntu/trusty-proposed/marble

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

Title:
  Marble Menu Squashed/Unreadable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/marble/+bug/1312104/+subscriptions

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


[Bug 1312104] Re: Marble Menu Squashed/Unreadable

2014-05-02 Thread Dennis Nienhüser
I'd like some packagers' suggestions how we should change things on the Marble 
side. The current situation emerged from the following considerations:
- all Marble binaries (marble, marble-qt, marble-touch, marble-mobile) should 
be compiled and installed by default if dependencies are satisfied
- The .desktop files should call the respective application just Marble. 

One approach would be to add cmake switches to disable building some of
the applications. The drawback would be that packagers need to know
about them, so we'd likely end up in the same situation as now.

Another approach would be trying to be clever of which .desktop files
are installed: The KDE one if KDE libraries are found, the mobile one if
the cmake MOBILE flag is set and the Qt one otherwise. The result would
be that just one .desktop file would be installed in any case. The
drawback ist then that building multiple binary packages from the same
source (marble, marble-qt) becomes impossible.

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

Title:
  Marble Menu Squashed/Unreadable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/marble/+bug/1312104/+subscriptions

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


[Bug 1312104] Re: Marble Menu Squashed/Unreadable

2014-05-02 Thread Harald Sitter
Well, to be honest the notion using Name=Marble is the real problem. Separation 
etc. ought, and is, done on distro level anyway (except for a few, to mind 
comes slackware which does not produce split binary units from one source 
unit). But if the user installs more than one marble it's impossible to tell 
which is which [1] (generic name being the same doesn't help either, but 
there's menu implementations that do not actually show the generic name at all 
anyway...). Arguably this is not really a major issue because the user should 
only ever need to install one anyway. But, that is where the same Name for 
different binary units becomes even more annoying.
For example ubuntu's app-install data is the metadata powering the software 
store, this data is autogenerated from desktop files. For marble you therefore 
get 4 distinct entries in the ubuntu software store and muon discover [2].

All that being said, I do appreciate why you want it to have the same name and 
I think that generally this is a good idea. So here is how I would solve this:
- have one desktop file with Name=Marble
- introduce a starter-binary that decides at runtime which marble UI to 
actually start
- the desktop file then Exec=marble-starter and the starter applies a priority 
scheme to decide which marble to start (e.g. kde  touch  mobile  qt) 
depending on what is actually installed

^ In addition to that one could then still have desktop files that have
a distinct more technical name like Name=Marble Qt.

Packagewise I think most distributions (or at least the ones that split the 
binary units into different packages) can represent that sort of dependency on 
a packaging level.
For example on our end this would probably look like a bit like this:

-marble.deb
  Depends: marble-bin-kde | marble-bin-qt | marble-bin-touch...
  Contains: usr/share/applications/kde4/marble.desktop (Name=Marble)

-marble-bin-kde.deb
  Contains: usr/bin/marble-kde

-marble-bin-qt.deb
  Contains: usr/bin/marble-qt

-marble-kde.deb
  Depends: marble-bin-kde
  Contains: usr/share/applications/kde4/marble-kde.desktop (Name=Marble KDE)

-marble-qt.deb
  Depends marble-bin-qt
  Contains: usr/share/applications/kde4/marble-qt.desktop (Name=Marble Qt)

So, you have the starter package, which needs at least one of the GUI
binaries. Independent of everything you have the gui binaries in their
own package. Finally you have the GUI specific desktop entry packages
that allow the user to explicitly start a specific GUI once those
packages are installed.

Mind you, the starter could also display a selection when more than one
GUI is installed, the GUI specific desktop files could be dropped
altogether as you can then start all guis through the starter even when
all of them are installed at the same time.

LibreOffice does something similar with their starter I think.

[1] http://i.imgur.com/tUhGdRS.png
[2] http://i.imgur.com/efg1oS4.png

HTH

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

Title:
  Marble Menu Squashed/Unreadable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/marble/+bug/1312104/+subscriptions

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


[Bug 1312104] Re: Marble Menu Squashed/Unreadable

2014-04-25 Thread Launchpad Bug Tracker
** Branch linked: lp:~kubuntu-packagers/kubuntu-packaging/marble

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

Title:
  Marble Menu Squashed/Unreadable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/marble/+bug/1312104/+subscriptions

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


[Bug 1312104] Re: Marble Menu Squashed/Unreadable

2014-04-25 Thread Harald Sitter
Yeah, the broken appearance probably also deserves a report a
bugs.kde.org.

** Changed in: marble (Ubuntu Utopic)
   Importance: Critical = High

** Changed in: marble (Ubuntu Utopic)
   Status: Triaged = Fix Committed

** Changed in: marble (Ubuntu Utopic)
Milestone: None = ubuntu-14.10

** Changed in: marble (Ubuntu Trusty)
Milestone: None = ubuntu-14.04.1

** Description changed:

+ [Impact]
+ 
+ The marble package incorrectly contains two different user interface
+ versions (desktop and mobile), additionally both versions identify as
+ Marble in applications menu (desktop entry) and users can happen to
+ launch the wrong Marble which gives an unintended and unacceptable user
+ experience.
+ 
+ [Test Case]
+ 
+ * Install marble package
+ * Confirm there is only one entry in the applications menu
+ * Confirm that starting the only marble entry launches the desktop UI [1]
+ 
+ [1] http://marble.kde.org/img/gallery/marble-desktop-satellite-
+ clouds.png
+ 
+ [Regression Potential]
+ 
+ None
+ 
+ [Other Info]
+  
+ N/A
+ 
+ -
+ 
  The Menu in Marble 4:4.13.0-0ubuntu1 (KUbuntu 14.04) is squashed
  together and partially unreadable. It looks like Marble was build with a
  Mobile UI instead of the Desktop version.
  
  See attached screenshot.

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

Title:
  Marble Menu Squashed/Unreadable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/marble/+bug/1312104/+subscriptions

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


[Bug 1312104] Re: Marble Menu Squashed/Unreadable

2014-04-25 Thread Rüdiger Sonderfeld
It seems not only KUbuntu suffered from the issue but also

* Fedora: https://bugs.kde.org/show_bug.cgi?id=329126
* Gentoo: https://bugs.kde.org/show_bug.cgi?id=329081
* OpenSuSE: https://bugs.kde.org/show_bug.cgi?id=330326


** Bug watch added: KDE Bug Tracking System #329126
   https://bugs.kde.org/show_bug.cgi?id=329126

** Bug watch added: KDE Bug Tracking System #329081
   https://bugs.kde.org/show_bug.cgi?id=329081

** Bug watch added: KDE Bug Tracking System #330326
   https://bugs.kde.org/show_bug.cgi?id=330326

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

Title:
  Marble Menu Squashed/Unreadable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/marble/+bug/1312104/+subscriptions

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


[Bug 1312104] Re: Marble Menu Squashed/Unreadable

2014-04-25 Thread Harald Sitter
Uploading marble_4.13.0-0ubuntu1.1_source.changes: done.
Successfully uploaded packages.

uploaded to trusty, pending sru approval

** Description changed:

  [Impact]
  
- The marble package incorrectly contains two different user interface
- versions (desktop and mobile), additionally both versions identify as
- Marble in applications menu (desktop entry) and users can happen to
- launch the wrong Marble which gives an unintended and unacceptable user
- experience.
+ The marble package incorrectly contains two different user interface versions 
(desktop and mobile), additionally both versions identify as Marble in 
applications menu (desktop entry) and users can happen to launch the wrong 
Marble which gives an unintended and unacceptable user experience.
+ To prevent this we set Hidden=true (which is equal to it not being there at 
all) as
+ the GUI is broken on the desktop anyway, should a future patch release 
improve the experience we can look into splitting the packages properly.
  
  [Test Case]
  
  * Install marble package
  * Confirm there is only one entry in the applications menu
  * Confirm that starting the only marble entry launches the desktop UI [1]
  
  [1] http://marble.kde.org/img/gallery/marble-desktop-satellite-
  clouds.png
  
  [Regression Potential]
  
  None
  
  [Other Info]
-  
+ 
  N/A
  
  -
  
  The Menu in Marble 4:4.13.0-0ubuntu1 (KUbuntu 14.04) is squashed
  together and partially unreadable. It looks like Marble was build with a
  Mobile UI instead of the Desktop version.
  
  See attached screenshot.

** Changed in: marble (Ubuntu Trusty)
   Status: Triaged = In Progress

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

Title:
  Marble Menu Squashed/Unreadable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/marble/+bug/1312104/+subscriptions

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


[Bug 1312104] Re: Marble Menu Squashed/Unreadable

2014-04-25 Thread Scott Kitterman
Hello Rüdiger, or anyone else affected,

Accepted into trusty-proposed. The package will build now and be
available in a few hours in the -proposed repository.

Please help us by testing this new package.  See
https://wiki.ubuntu.com/Testing/EnableProposed for documentation how to
enable and use -proposed.  Your feedback will aid us getting this update
out to other Ubuntu users.

If this package fixes the bug for you, please add a comment to this bug,
mentioning the version of the package you tested, and change the tag
from verification-needed to verification-done. If it does not fix the
bug for you, please add a comment stating that, and change the tag to
verification-failed.  In either case, details of your testing will help
us make a better decision.

Further information regarding the verification process can be found at
https://wiki.ubuntu.com/QATeam/PerformingSRUVerification .  Thank you in
advance!

** Changed in: marble (Ubuntu Trusty)
   Status: In Progress = Fix Committed

** Tags added: verification-needed

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

Title:
  Marble Menu Squashed/Unreadable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/marble/+bug/1312104/+subscriptions

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

[Bug 1312104] Re: Marble Menu Squashed/Unreadable

2014-04-25 Thread Flames_in_Paradise
** Tags added: kubuntu

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

Title:
  Marble Menu Squashed/Unreadable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/marble/+bug/1312104/+subscriptions

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


[Bug 1312104] Re: Marble Menu Squashed/Unreadable

2014-04-24 Thread Harald Sitter
Please note that marble-touch is a different package, it will however
show up in the menu as Marble, please make sure that

a) marble or marble-qt are installed
b) running marble or marble-qt from a terminal results in this behavior as well

** Changed in: marble (Ubuntu)
   Status: New = Incomplete

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

Title:
  Marble Menu Squashed/Unreadable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/marble/+bug/1312104/+subscriptions

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


[Bug 1312104] Re: Marble Menu Squashed/Unreadable

2014-04-24 Thread Rüdiger Sonderfeld
I don't have marble-touch installed:

$ dpkg -l marble\*
Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
|/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
||/ Name   Version  
  Architecture   Description
+++-==-==-==-=
ii  marble 4:4.13.0-0ubuntu1
  amd64  globe and map widget
ii  marble-data4:4.13.0-0ubuntu1
  alldata files for Marble
ii  marble-plugins 4:4.13.0-0ubuntu1
  amd64  plugins for Marble

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

Title:
  Marble Menu Squashed/Unreadable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/marble/+bug/1312104/+subscriptions

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


[Bug 1312104] Re: Marble Menu Squashed/Unreadable

2014-04-24 Thread Rüdiger Sonderfeld
It seems the marble package now contains a mobile application

$ dpkg -L marble | grep marble-mobile
/usr/share/applications/kde4/marble-mobile.desktop
/usr/bin/marble-mobile

And indeed it adds two entries with the same name but one launching the
mobile version and one launching the desktop version.

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

Title:
  Marble Menu Squashed/Unreadable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/marble/+bug/1312104/+subscriptions

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


[Bug 1312104] Re: Marble Menu Squashed/Unreadable

2014-04-24 Thread Rüdiger Sonderfeld
It behaves differently when launched from the terminal though and the
non-mobile UI is launched.

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

Title:
  Marble Menu Squashed/Unreadable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/marble/+bug/1312104/+subscriptions

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


[Bug 1312104] Re: Marble Menu Squashed/Unreadable

2014-04-24 Thread Harald Sitter
course of action for trusty: set NoDisplay=true on the mobile desktop file
course of action for utopic: create new package, also shout at someone

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

Title:
  Marble Menu Squashed/Unreadable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/marble/+bug/1312104/+subscriptions

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


[Bug 1312104] Re: Marble Menu Squashed/Unreadable

2014-04-24 Thread Harald Sitter
I just died a bit inside.

** Changed in: marble (Ubuntu)
   Importance: Undecided = Critical

** Changed in: marble (Ubuntu)
   Status: Incomplete = Triaged

** Also affects: marble (Ubuntu Trusty)
   Importance: Undecided
   Status: New

** Also affects: marble (Ubuntu Utopic)
   Importance: Critical
   Status: Triaged

** Changed in: marble (Ubuntu Trusty)
   Status: New = Triaged

** Changed in: marble (Ubuntu Trusty)
   Importance: Undecided = High

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

Title:
  Marble Menu Squashed/Unreadable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/marble/+bug/1312104/+subscriptions

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


[Bug 1312104] Re: Marble Menu Squashed/Unreadable

2014-04-24 Thread Rüdiger Sonderfeld
Thanks for the quick response!

I think the mobile version should also announce itself as Marble
Mobile in the menu entry.  (Probably even if it's from the marble-touch
package.)

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

Title:
  Marble Menu Squashed/Unreadable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/marble/+bug/1312104/+subscriptions

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


[Bug 1312104] Re: Marble Menu Squashed/Unreadable

2014-04-24 Thread Harald Sitter
Yeah, please report that at http://bugs.kde.org against marble, but I
presume there was a reason the devs called all of it Marble even if it
is confusing if one has multiple Marbles.

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

Title:
  Marble Menu Squashed/Unreadable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/marble/+bug/1312104/+subscriptions

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


[Bug 1312104] Re: Marble Menu Squashed/Unreadable

2014-04-24 Thread Rüdiger Sonderfeld
Done: https://bugs.kde.org/show_bug.cgi?id=333838

** Bug watch added: KDE Bug Tracking System #333838
   https://bugs.kde.org/show_bug.cgi?id=333838

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

Title:
  Marble Menu Squashed/Unreadable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/marble/+bug/1312104/+subscriptions

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


[Bug 1312104] Re: Marble Menu Squashed/Unreadable

2014-04-24 Thread Rüdiger Sonderfeld
Oh, I forgot: Even if this is the mobile (touch?) version it should
probably not look like that on the Desktop.  Should I report this
upstream as well?

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

Title:
  Marble Menu Squashed/Unreadable

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/marble/+bug/1312104/+subscriptions

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