After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 663725 - Text size of labels in activities too small and get ellipsized instead of wrapping
Text size of labels in activities too small and get ellipsized instead of wra...
Status: RESOLVED OBSOLETE
Product: gnome-shell
Classification: Core
Component: overview
3.26.x
Other Linux
: Normal normal
: ---
Assigned To: gnome-shell-maint
gnome-shell-maint
triaged
: 649571 663835 664371 674183 675419 682184 687589 687969 688984 691235 700388 704348 738651 761244 765779 778186 782169 796404 796726 (view as bug list)
Depends on:
Blocks:
 
 
Reported: 2011-11-09 19:52 UTC by Pierre Ossman
Modified: 2021-07-05 14:31 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
increase font sizes (1.17 KB, patch)
2011-11-11 20:18 UTC, Pierre Ossman
none Details | Review
increased font size and multiline support (2.77 KB, patch)
2011-11-12 22:44 UTC, Pierre Ossman
none Details | Review
increased font size and multiline support (improved) (5.27 KB, patch)
2011-11-13 18:00 UTC, Pierre Ossman
none Details | Review
Comparison screenshot (410.13 KB, image/png)
2011-11-13 18:01 UTC, Pierre Ossman
  Details
Comparison screenshot (416.79 KB, image/png)
2011-11-13 18:06 UTC, Pierre Ossman
  Details
Full screenshot (628.37 KB, image/jpeg)
2011-11-14 17:51 UTC, Pierre Ossman
  Details
0001-Improve-icon-grid-layout.patch (3.63 KB, patch)
2011-11-14 18:02 UTC, Pierre Ossman
none Details | Review
0002-Avoid-small-font-sizes-in-common-ui-elements.patch (2.94 KB, patch)
2011-11-14 18:02 UTC, Pierre Ossman
none Details | Review
Full screenshot, icons top aligned (627.18 KB, image/jpeg)
2011-11-15 18:47 UTC, Pierre Ossman
  Details
design (31.94 KB, image/png)
2012-01-14 14:52 UTC, Alex Hultman
  Details
design (35.61 KB, image/png)
2012-01-14 15:51 UTC, Alex Hultman
  Details
0001-Increase-size-of-background-image-to-handle-larger-g.patch (3.95 KB, patch)
2012-02-25 15:26 UTC, Pierre Ossman
none Details | Review
Fixed width, varying height (957.65 KB, image/png)
2012-02-26 14:26 UTC, Pierre Ossman
  Details
working copy diff (13.05 KB, patch)
2012-03-06 06:51 UTC, Pierre Ossman
none Details | Review
Text wrapping (207.53 KB, image/png)
2016-06-10 07:53 UTC, kolorafa
  Details
current Ubuntu example of confusing layout (334.46 KB, image/png)
2017-07-06 22:39 UTC, Sebastien Bacher
  Details

Description Pierre Ossman 2011-11-09 19:52:58 UTC
The default size of many things in activities is currently a bit too small and rather difficult to read. This affects things like window titles, and even worse for application icons. In general, I'd say text size should be kept >= 10pt.
Comment 1 André Klapper 2011-11-10 10:45:35 UTC
It works totally fine for me. Probably highly depends on your screen size and resolution. Can you please provide more info?
Which distribution is this about?
Comment 2 Pierre Ossman 2011-11-10 11:49:53 UTC
Of course.

The distribution is Fedora 16.
My screen size is 15.4", with a resolution of 1680x1050.

I noticed that the problem is less severe on a screen with better contrast (on my colleagues laptop), so it might not be considered a problem with people with fancier machines.

Basically, the applications grid is barely readable when sitting normally in my chair with the laptop on the desk. I have to lean in so that my eyes are roughly above the edge of the laptop to get a comfortable reading distance.
Comment 3 Milan Bouchet-Valat 2011-11-10 12:55:29 UTC
It's true that icon name tooltips in the dash and window titles are smaller than most labels in the desktop. In particular, even if I can read them, I confirm that window titles are not very easy to read in a short glance (15" laptop screen).
Comment 4 Pierre Ossman 2011-11-11 20:18:19 UTC
Created attachment 201253 [details] [review]
increase font sizes

Suggested change to increase font sizes. This uses 10.5pt as that seems to be a common size in the rest of the theme.

There are a still a few elements that are <10pt, but I didn't touch those as they weren't part of common components.


One problem this causes is that application labels will often not fit. Ideally, they should be able to be multi-line. Unfortunately I'm unable to figure out the Javascript/gnome-shell/Clutter layers to accomplish this.
Comment 5 Jasper St. Pierre (not reading bugmail) 2011-11-11 22:58:05 UTC
*** Bug 649571 has been marked as a duplicate of this bug. ***
Comment 6 Pierre Ossman 2011-11-12 19:54:50 UTC
Some pointers on how to get multiline would be nice. I tried adding the following to iconGrid.js:

            this.label.line_wrap = true;
            this.label.line_wrap_mode = Pango.WrapMode.WORD_CHAR;
            this.label.ellipsize = Pango.EllipsizeMode.NONE;

No go though. It didn't even disable the ellipsing...

As plan B, I did this, which worked:

        this.tooltip = label;
        this.actor.has_tooltip = true;
        this.actor.tooltip_text = label;
Comment 7 Pierre Ossman 2011-11-12 20:33:50 UTC
Ok, I managed to figure it out. I forgot a ".clutter_text." in there:

            this.label.clutter_text.line_wrap = true;
            this.label.clutter_text.line_wrap_mode = Pango.WrapMode.WORD_CHAR;
            this.label.clutter_text.ellipsize = Pango.EllipsizeMode.NONE;

I also needed to get it properly restricted to the given width using:

            let [labelMinHeight, labelNatHeight] = this.label.get_preferred_height(availWidth);

Unfortunately, the bounding containers didn't resize dynamically as I would have hoped, so I had to change "-shell-grid-item-size" in the css. That got things mostly working for two line objects (although it got center aligned, instead of top aligned, which is probably preferred). It still looked funky for three line objects though.

So more work is needed to get thing more dynamic. Some help from the experts would be welcome. :)
Comment 8 Pierre Ossman 2011-11-12 22:44:45 UTC
Created attachment 201299 [details] [review]
increased font size and multiline support

Managed to figure it out. I have to say I'm very impressed by how easy it is to hack gnome-shell. :)

This patch improves the BaseIcon class so that it supports multiple lines. It will use the available space to fit as many lines as possible. That also means it should be completely backwards compatible as long as you don't increase the space given to it. I've changed the CSS to allow two lines of text with the new font size.

The remaining issue I have is that the "running" marker is misplaced. It seems like it is using the minimum width instead of the actual one. There's the same issue with the width, if a square look is deemed desirable.
Comment 9 Milan Bouchet-Valat 2011-11-13 10:01:12 UTC
> Managed to figure it out. I have to say I'm very impressed by how easy it is to
> hack gnome-shell. :)
That's one of the reasons JavaScript was chosen. ;-)

Care to attach a screenshot? Designers need to agree on the change, and they probably won't apply the patch to check the result. (The running indicator bug can be dealt with once/if they agree.)(In reply to comment #8)
Comment 10 drago01 2011-11-13 16:29:41 UTC
I'd be in favor of this change ... the problem isn't really the font size though but the chosen font. Cantarel just looks bad at this small sizes. But as we are unlikely going to change the font increasing the size sound like a good way to solve it.
Comment 11 Pierre Ossman 2011-11-13 18:00:45 UTC
Created attachment 201323 [details] [review]
increased font size and multiline support (improved)

Improved version of the last patch. Better alignment of the label and icon when there is extra space, and makes things square to make it easier to fix the "running" marker.
Comment 12 Pierre Ossman 2011-11-13 18:01:08 UTC
Created attachment 201324 [details]
Comparison screenshot
Comment 13 Pierre Ossman 2011-11-13 18:06:02 UTC
Created attachment 201325 [details]
Comparison screenshot

(fixed image. bad pixel alignment in the first one)
Comment 14 Milan Bouchet-Valat 2011-11-13 18:06:09 UTC
*** Bug 663835 has been marked as a duplicate of this bug. ***
Comment 15 drago01 2011-11-13 18:25:30 UTC
(In reply to comment #11)
> Created an attachment (id=201323) [details] [review]
> increased font size and multiline support (improved)
> 
> Improved version of the last patch. Better alignment of the label and icon when
> there is extra space, and makes things square to make it easier to fix the
> "running" marker.

Can you reattach this as a proper git patch? i.e with commit message and subject (using git format-patch or git-bz).
Comment 16 Allan Day 2011-11-14 14:44:40 UTC
(In reply to comment #13)
> Created an attachment (id=201325) [details]
> Comparison screenshot
> 
> (fixed image. bad pixel alignment in the first one)

Thanks for the patch and the screenshot! I've having trouble with my build today so I'm unable to test. Can you post a full screen shot for me to see?
Comment 17 Jasper St. Pierre (not reading bugmail) 2011-11-14 14:48:06 UTC
The main thing that I can see is that items in the grid are misaligned. The way you would fix that is with the y_align property, so that the icons in the grid are always at the top of the item.

A full screenshot would help to see if it's noticable, though.
Comment 18 Pierre Ossman 2011-11-14 17:51:51 UTC
Created attachment 201387 [details]
Full screenshot
Comment 19 Pierre Ossman 2011-11-14 17:53:18 UTC
(In reply to comment #17)
> The main thing that I can see is that items in the grid are misaligned. The way
> you would fix that is with the y_align property, so that the icons in the grid
> are always at the top of the item.
> 
> A full screenshot would help to see if it's noticable, though.

I'm afraid I'm still too new to this to understand what you mean. Could you elaborate a bit? Things should be aligned AFAICT :)
Comment 20 Jasper St. Pierre (not reading bugmail) 2011-11-14 17:56:24 UTC
Look at the bottom of the ABRT icon compared to the icons to the left of it. The full label pushes the icon up. We want to not do that.
Comment 21 Pierre Ossman 2011-11-14 18:02:34 UTC
Created attachment 201388 [details] [review]
0001-Improve-icon-grid-layout.patch
Comment 22 Pierre Ossman 2011-11-14 18:02:54 UTC
Created attachment 201389 [details] [review]
0002-Avoid-small-font-sizes-in-common-ui-elements.patch
Comment 23 Pierre Ossman 2011-11-14 18:07:05 UTC
(In reply to comment #20)
> Look at the bottom of the ABRT icon compared to the icons to the left of it.
> The full label pushes the icon up. We want to not do that.

Ah. Suggestions on how the logic should be here? Just have BaseIcon top align everything?
Comment 24 Allan Day 2011-11-14 19:16:29 UTC
Jimmac (one of the designers) approves of the general approach here.

It's been suggested that we impose a two line limit on the size of the labels.
Comment 25 Pierre Ossman 2011-11-15 18:47:12 UTC
Created attachment 201472 [details]
Full screenshot, icons top aligned

Here's a screenshot with the icons aligned at the top instead. This puts them all at the same height, regardless of how big the label is.

I'm not so sure about this model though. As you can see, this results in uneven space around the application when it is selected. To me, this looks worse than the fact that the icons aren't on a perfectly straight line.
Comment 26 Jasper St. Pierre (not reading bugmail) 2011-11-15 18:59:20 UTC
Hm, why does the running prelight go around the label, not around the full box? See if you can tweak the CSS so that it goes around the box instead.
Comment 27 Pierre Ossman 2011-11-15 19:31:10 UTC
I have no idea, and that was the portion I need some help with. The CSS for it is just this:

.app-well-app.running > .overview-icon {
    text-shadow: black 0px 2px 2px;
    background-image: url("running-indicator.svg");
}

I'm afraid I have no idea on how gnome-shell handles backgrounds. What's the default position? Scaling? Repeat?

It looks to me like the answer is, centered, no scaling, no repeat. OTOH, the favourites list on the left seem to have a scaled version of the running indicator.
Comment 28 Milan Bouchet-Valat 2011-11-19 11:03:31 UTC
*** Bug 664371 has been marked as a duplicate of this bug. ***
Comment 29 Milan Bouchet-Valat 2011-11-21 17:28:59 UTC
For window title labels, see bug 201829.
Comment 30 Pierre Ossman 2011-11-21 18:19:11 UTC
That doesn't seem to have been a correct bug number. :)
Comment 31 Milan Bouchet-Valat 2011-11-21 18:24:27 UTC
Yeah, that was bug 664486. Wonder where I found the weird bug number... Too many mistakes in a few days, I guess I need to learn how to copy and paste. ;-)
Comment 32 Lapo Calamandrei 2011-12-21 13:33:54 UTC
Looks quite good to me, I think you could try to reduce just a little bit the space between the two lines of text and center the text vertically, so the running app hilight (is that fixed now?) would look better in case of just one line, not sure tho need to see it first.
Comment 33 Lapo Calamandrei 2011-12-21 13:36:15 UTC
Also the space between grid cells could be reduced quite a bit.
Comment 34 Pierre Ossman 2011-12-22 07:31:07 UTC
I'm afraid I haven't looked very much more at this (damn skyrim), but it's not off my radar. I'll try to get a new version for you soon.
Comment 35 Alex Hultman 2012-01-14 02:18:38 UTC
(In reply to comment #34)
> I'm afraid I haven't looked very much more at this (damn skyrim), but it's not
> off my radar. I'll try to get a new version for you soon.

What's the status on this? Do you have an upcoming patch or should I take a look? Multiple lines shove the icons up so you align them to the top but then hovering them look bad, right?

Maybe try do a little less css-fixes and more coded resizing of the labels? I think css-fixes are too general to work. Some dynamic Pango resize may work.

If you are not working on anything upcoming that fixes this I could try to fix it. This would improve the icon grid a lot.
Comment 36 Alex Hultman 2012-01-14 02:37:51 UTC
Forget about the css being too general stuff I might misunderstood that but what's the status on this?
Comment 37 Pierre Ossman 2012-01-14 10:58:52 UTC
Feel free to hack away. I don't have any more work right now that isn't attached to this bug.
Comment 38 Alex Hultman 2012-01-14 14:52:39 UTC
Created attachment 205263 [details]
design

Is this what we are aiming at?
Comment 39 Alex Hultman 2012-01-14 15:51:06 UTC
Created attachment 205266 [details]
design

-||-
Comment 40 Saurav Sengupta 2012-01-23 18:49:40 UTC
Wouldn't it be better to let the icon labels remain single-line and use tooltips for those cases where the text is truncated by an ellipsis?
Comment 41 drago01 2012-01-23 19:03:17 UTC
(In reply to comment #40)
> Wouldn't it be better to let the icon labels remain single-line and use
> tooltips for those cases where the text is truncated by an ellipsis?

No makes reading harder and does not really work on touch.
Comment 42 Pierre Ossman 2012-02-25 15:26:36 UTC
Created attachment 208407 [details] [review]
0001-Increase-size-of-background-image-to-handle-larger-g.patch

I managed to figure out the problem with the background. It seems things will be scaled down if the background is too large, but just centered if it is too small. So the solution is simply to increase the size of the background to something larger than the icon grid.
Comment 43 Pierre Ossman 2012-02-25 15:32:14 UTC
I'm trying to get the proposed design to work, but it is difficult for three reasons:

 - There is no value provided for suitable padding. Currently the padding is simply what's left after the icon and label have taken their areas, so there is no need to specify it.

 - I can't get the allocation code to behave properly. It will never allocate more than the minimum height needed, even if there is room. It seems like _getPreferredHeight()/_getPreferredWidth() is never called with anything except -1 as the argument.

 - Icon boxes tend to become rectangular, causing the "running" indicator to either have an offset from the bottom, or not be wide enough.


Is the proposed design a hard requirement? Or can forced square containers with varying amounts of padding be acceptable for now? I'd really like to see these changes get in 3.4.
Comment 44 Jasper St. Pierre (not reading bugmail) 2012-02-25 19:15:31 UTC
(In reply to comment #43)
>  - I can't get the allocation code to behave properly. It will never allocate
> more than the minimum height needed, even if there is room. It seems like
> _getPreferredHeight()/_getPreferredWidth() is never called with anything except
> -1 as the argument.

That's a common bug all throughout the Shell code. The fix should be in iconGrid.js. I wonder if we should just scrap a lot of that code and replace it with a ClutterFlowLayout or ClutterGridLayout.
Comment 45 Pierre Ossman 2012-02-26 13:37:10 UTC
Looking further at this, I'm not sure how the current request/allocation methods can resolve this properly. Either there are more methods, or the proposed design is impossible in the current architecture.

Basically I reimplemented clutter_actor_allocate_align_fill() in iconGrid.js. This method fails to handle text wrapping correctly:

 a) The actor is asked for a natural width, given a limited height. It will compute a layout without line breaks, given that available width is infinite.

 b) The actor is asked for a natural height, given a limited width. It will now be forced to wrap the lines to compute a multi-line height.

 c) Width would now have to be recomputed, given that the line wrapping will most likely not require the full available width. Failure to do so adds extra padding to these icons.

As far as I can tell, there is no way to do c). Basically the layout system would need a way to ask for BOTH width and height at the same time, not independently.

So I see two options here:

 1. Abandon the proposed design because it cannot be implemented in the current structure.

 2. Reorganise the widget hierarchy. The highlighted area needs to be owned by BaseIcon, as it is the only part of the code which can compute its dimensions correctly.
Comment 46 Pierre Ossman 2012-02-26 13:45:37 UTC
I'm not paying enough attention. It seems the highlighted area is already owned by BaseIcon. I'll see if I can get this working...
Comment 47 Pierre Ossman 2012-02-26 14:08:18 UTC
Crap... doesn't look like that helped me. The final dimensions seems to be nicely hidden away from BaseIcon as well.

Ideas?
Comment 48 Pierre Ossman 2012-02-26 14:26:42 UTC
Created attachment 208441 [details]
Fixed width, varying height

Compromise suggestion. The width is fixed for icon entries, but the height varies depending on the size of the label.
Comment 49 Allan Day 2012-02-27 08:53:04 UTC
(In reply to comment #48)
> Created an attachment (id=208441) [details]
> Fixed width, varying height
> 
> Compromise suggestion. The width is fixed for icon entries, but the height
> varies depending on the size of the label.

Hey Pierre, do you have an updated patch to go along with this?
Comment 50 Pierre Ossman 2012-03-06 06:51:10 UTC
Created attachment 209050 [details] [review]
working copy diff

I just did a quick hack to get that screen shot. But here's a diff for my working copy if you want to test it.
Comment 51 Milan Bouchet-Valat 2012-05-04 08:51:34 UTC
*** Bug 675419 has been marked as a duplicate of this bug. ***
Comment 52 Milan Bouchet-Valat 2012-05-04 08:53:28 UTC
Could somebody review Pierre's patch? It's too bad it wasn't included in 3.4...
Comment 53 Reinout van Schouwen 2012-07-20 15:11:12 UTC
It looks like the proposed patch would fix my problem that different versions of the same app (like Netbeans 7.1.1 and Netbeans 7.2 RC1) with the same icons, only discernible by their titles, are ellipsized identically so that I don't know which is which?
Comment 54 Jasper St. Pierre (not reading bugmail) 2012-09-05 17:31:02 UTC
*** Bug 682184 has been marked as a duplicate of this bug. ***
Comment 55 drago01 2012-11-24 19:02:37 UTC
*** Bug 688984 has been marked as a duplicate of this bug. ***
Comment 56 Lapo Calamandrei 2012-11-25 15:58:22 UTC
Pierre, I think it's pretty crucial here to keep the icon + text cell a square whatever the label lengh is, with that fixed I think the patch should go in.
Comment 57 Milan Bouchet-Valat 2013-01-06 18:04:57 UTC
*** Bug 691235 has been marked as a duplicate of this bug. ***
Comment 58 Daniel Mustieles 2013-01-08 12:11:32 UTC
Changed version to 3.7.x.

It would be great someone could review the patches sent and commit/approve them. The fix should not depend on screen size/resolution... maybe having a higer padding between elements or showing the tile hovering the mouse would be enough.
Comment 59 Daniel Mustieles 2013-01-22 11:57:17 UTC
Any progress on this? If patches are ok, please commit them so we can close this issue.

Thanks!
Comment 60 Pierre Ossman 2013-01-22 12:10:03 UTC
I haven't had time to look at what was requested in comment #56.
Comment 61 Allan Day 2013-03-02 23:47:26 UTC
This bug has mostly come to be about line wrapping for the application names. The more I think about it, the less I'm sure that wrapping will work with the current prelight effect that we use for running apps.

A better solution seems to be to make the app names wider, as is described in bug 694699.
Comment 62 Florian Müllner 2013-07-16 22:56:31 UTC
*** Bug 704348 has been marked as a duplicate of this bug. ***
Comment 63 Allan Day 2013-08-27 23:08:08 UTC
*** Bug 700388 has been marked as a duplicate of this bug. ***
Comment 64 Allan Day 2013-08-27 23:08:34 UTC
Reassigning to overview.
Comment 65 Florian Müllner 2014-10-17 08:42:14 UTC
*** Bug 738651 has been marked as a duplicate of this bug. ***
Comment 66 Florian Müllner 2014-11-07 19:15:16 UTC
*** Bug 674183 has been marked as a duplicate of this bug. ***
Comment 67 Florian Müllner 2015-03-07 10:12:25 UTC
*** Bug 687589 has been marked as a duplicate of this bug. ***
Comment 68 Florian Müllner 2015-08-05 11:47:47 UTC
*** Bug 753217 has been marked as a duplicate of this bug. ***
Comment 69 Florian Müllner 2016-01-28 13:32:05 UTC
*** Bug 761244 has been marked as a duplicate of this bug. ***
Comment 70 Florian Müllner 2016-04-28 20:37:04 UTC
*** Bug 765779 has been marked as a duplicate of this bug. ***
Comment 71 kolorafa 2016-06-10 07:53:30 UTC
Created attachment 329534 [details]
Text wrapping

Today i want to try Google unstable, if something is wrong i want google beta ...

How to know what is what if those icons change positions as you use them?
Comment 72 Inactive account 2016-06-11 11:51:49 UTC
@kolorafa, Just as a temporary solution I would suggest that you edit the .desktop files for them to make the names shorter and fit properly.
Comment 73 splerg 2016-09-06 14:17:59 UTC
Just use this extension: https://extensions.gnome.org/extension/1071/applications-overview-tooltip/
Comment 74 Florian Müllner 2017-02-05 17:06:45 UTC
*** Bug 778186 has been marked as a duplicate of this bug. ***
Comment 75 Florian Müllner 2017-05-04 21:07:28 UTC
*** Bug 782169 has been marked as a duplicate of this bug. ***
Comment 76 Marcus Sundman 2017-05-30 23:20:49 UTC
This is ridiculous! A bug which breaks the most central thing in the whole UI, and it goes unfixed for over half a decade. And even after patches have been provided years ago.
If there was no patches I'd have a look at it myself, but clearly nobody is interested in even reviewing patches so what's the point?
Comment 77 Allan Day 2017-06-02 09:56:48 UTC
(In reply to Marcus Sundman from comment #76)
> This is ridiculous! A bug which breaks the most central thing in the whole
> UI, and it goes unfixed for over half a decade. And even after patches have
> been provided years ago.
> If there was no patches I'd have a look at it myself, but clearly nobody is
> interested in even reviewing patches so what's the point?

Please cut out the emotional hyperbole. The fact that there are comments here from shell developers clearly shows that people are interested.

What I said in comment 61 still stands. If you have a suggested for how to resolve the issue we'd love to hear it.
Comment 78 Nicolás Bértolo 2017-06-03 19:13:10 UTC
(In reply to Allan Day from comment #77)
> What I said in comment 61 still stands. If you have a suggested for how to
> resolve the issue we'd love to hear it.

I am not who you are talking to, but I am annoyed by this bug too.

In my opinion the ugliness caused by wrapped text is, by far, less annoying than not being able to read the application's name in the overview. 

Taking into account the fact that this bug has been open for close to 6 years and that there are patches available that partially fix it, it seems like a good decision to commit those patches and schedule a design review of the overview's effects.

These are my honest thoughts on this matter.

Cheers.
Comment 79 Inactive account 2017-06-05 22:26:56 UTC
I agree, this really needs to be sorted out. What's the point in working on new features if the existing ones don't work well enough already?
Comment 80 Allan Day 2017-06-06 09:42:39 UTC
(In reply to Nicolás Bértolo from comment #78)
...
> I am not who you are talking to, but I am annoyed by this bug too.

My comment was marked as a reply to comment 76.

> In my opinion the ugliness caused by wrapped text is, by far, less annoying
> than not being able to read the application's name in the overview. 

Nobody's talking about "ugliness" from wrapping. The issue is that multi-line names will interfere with the positioning of the running indicator below the application name - either making it appear too far below the name, or leaving it positioned at different heights.

One way to fix it would be to drop the running indicators from the application grid.

> Taking into account the fact that this bug has been open for close to 6
> years and that there are patches available that partially fix it, it seems
> like a good decision to commit those patches and schedule a design review of
> the overview's effects.

That's not how this works. We come up with a design first, then commit patches. Not the other way round.
Comment 81 Jeremy Bicha 2017-06-06 13:17:03 UTC
By the way, Ubuntu 17.10 Alpha currently defaults to GNOME Shell with the Ubuntu font which means there are even fewer characters there (about 13-14) before the labels start ellipsizing. I posted a screenshot at comment #5 of https://launchpad.net/bugs/968213
Comment 82 Sebastien Bacher 2017-07-06 22:39:20 UTC
Created attachment 355056 [details]
current Ubuntu example of confusing layout

One other example of very confusing user experience, that's on a stock current Ubuntu installation looking for libreoffice, you better know the icon to be able to start the right component...
Comment 83 Romano Giannetti 2017-07-07 15:43:10 UTC
Just showing the full name (even more important for files) on mouse-over would solve the problem, at least for non-touch interface.
Comment 84 joshas 2017-11-19 17:44:10 UTC
Ubuntu 17.10 was released with this issue. Please, find a way to add at least second line for long program names. Activity indicator could be moved to the left, like in Ubuntu dash.
Comment 85 Daniel van Vugt 2018-04-27 08:09:51 UTC
A fix is pending:
https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/90
Comment 86 Daniel van Vugt 2018-05-01 02:48:15 UTC
And another fix is pending:
https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/58
Comment 87 André Klapper 2018-05-26 11:22:21 UTC
*** Bug 796404 has been marked as a duplicate of this bug. ***
Comment 88 Florian Müllner 2018-05-31 16:58:16 UTC
*** Bug 687969 has been marked as a duplicate of this bug. ***
Comment 89 Daniel van Vugt 2018-06-05 02:54:25 UTC
And another fix is pending:
https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/109
Comment 90 Piotr Drąg 2018-07-01 17:50:01 UTC
*** Bug 796726 has been marked as a duplicate of this bug. ***
Comment 91 GNOME Infrastructure Team 2021-07-05 14:31:24 UTC
GNOME is going to shut down bugzilla.gnome.org in favor of  gitlab.gnome.org.
As part of that, we are mass-closing older open tickets in bugzilla.gnome.org
which have not seen updates for a longer time (resources are unfortunately
quite limited so not every ticket can get handled).

If you can still reproduce the situation described in this ticket in a recent
and supported software version, then please follow
  https://wiki.gnome.org/GettingInTouch/BugReportingGuidelines
and create a new ticket at
  https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/

Thank you for your understanding and your help.