Launchpad has imported 91 comments from the remote bug at
https://bugzilla.gnome.org/show_bug.cgi?id=663725.

If you reply to an imported comment from within Launchpad, your comment
will be sent to the remote bug automatically. Read more about
Launchpad's inter-bugtracker facilities at
https://help.launchpad.net/InterBugTracking.

------------------------------------------------------------------------
On 2011-11-09T19:52:58+00:00 Pierre-bugzilla wrote:

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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/0

------------------------------------------------------------------------
On 2011-11-10T10:45:35+00:00 Andre Klapper wrote:

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?

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/1

------------------------------------------------------------------------
On 2011-11-10T11:49:53+00:00 Pierre-bugzilla wrote:

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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/2

------------------------------------------------------------------------
On 2011-11-10T12:55:29+00:00 Milan Bouchet-Valat wrote:

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).

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/3

------------------------------------------------------------------------
On 2011-11-11T20:18:19+00:00 Pierre-bugzilla wrote:

Created attachment 201253
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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/4

------------------------------------------------------------------------
On 2011-11-11T22:58:05+00:00 Jasper St. Pierre wrote:

*** Bug 649571 has been marked as a duplicate of this bug. ***

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/5

------------------------------------------------------------------------
On 2011-11-12T19:54:50+00:00 Pierre-bugzilla wrote:

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;

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/6

------------------------------------------------------------------------
On 2011-11-12T20:33:50+00:00 Pierre-bugzilla wrote:

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. :)

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/7

------------------------------------------------------------------------
On 2011-11-12T22:44:45+00:00 Pierre-bugzilla wrote:

Created attachment 201299
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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/8

------------------------------------------------------------------------
On 2011-11-13T10:01:12+00:00 Milan Bouchet-Valat wrote:

> 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)

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/9

------------------------------------------------------------------------
On 2011-11-13T16:29:41+00:00 Drago01 wrote:

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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/10

------------------------------------------------------------------------
On 2011-11-13T18:00:45+00:00 Pierre-bugzilla wrote:

Created attachment 201323
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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/11

------------------------------------------------------------------------
On 2011-11-13T18:01:08+00:00 Pierre-bugzilla wrote:

Created attachment 201324
Comparison screenshot

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/12

------------------------------------------------------------------------
On 2011-11-13T18:06:02+00:00 Pierre-bugzilla wrote:

Created attachment 201325
Comparison screenshot

(fixed image. bad pixel alignment in the first one)

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/13

------------------------------------------------------------------------
On 2011-11-13T18:06:09+00:00 Milan Bouchet-Valat wrote:

*** Bug 663835 has been marked as a duplicate of this bug. ***

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/14

------------------------------------------------------------------------
On 2011-11-13T18:25:30+00:00 Drago01 wrote:

(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).

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/15

------------------------------------------------------------------------
On 2011-11-14T14:44:40+00:00 Allan Day wrote:

(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?

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/16

------------------------------------------------------------------------
On 2011-11-14T14:48:06+00:00 Jasper St. Pierre wrote:

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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/17

------------------------------------------------------------------------
On 2011-11-14T17:51:51+00:00 Pierre-bugzilla wrote:

Created attachment 201387
Full screenshot

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/18

------------------------------------------------------------------------
On 2011-11-14T17:53:18+00:00 Pierre-bugzilla wrote:

(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 :)

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/19

------------------------------------------------------------------------
On 2011-11-14T17:56:24+00:00 Jasper St. Pierre wrote:

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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/20

------------------------------------------------------------------------
On 2011-11-14T18:02:34+00:00 Pierre-bugzilla wrote:

Created attachment 201388
0001-Improve-icon-grid-layout.patch

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/21

------------------------------------------------------------------------
On 2011-11-14T18:02:54+00:00 Pierre-bugzilla wrote:

Created attachment 201389
0002-Avoid-small-font-sizes-in-common-ui-elements.patch

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/22

------------------------------------------------------------------------
On 2011-11-14T18:07:05+00:00 Pierre-bugzilla wrote:

(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?

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/23

------------------------------------------------------------------------
On 2011-11-14T19:16:29+00:00 Allan Day wrote:

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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/24

------------------------------------------------------------------------
On 2011-11-15T18:47:12+00:00 Pierre-bugzilla wrote:

Created attachment 201472
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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/25

------------------------------------------------------------------------
On 2011-11-15T18:59:20+00:00 Jasper St. Pierre wrote:

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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/26

------------------------------------------------------------------------
On 2011-11-15T19:31:10+00:00 Pierre-bugzilla wrote:

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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/27

------------------------------------------------------------------------
On 2011-11-19T11:03:31+00:00 Milan Bouchet-Valat wrote:

*** Bug 664371 has been marked as a duplicate of this bug. ***

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/28

------------------------------------------------------------------------
On 2011-11-21T17:28:59+00:00 Milan Bouchet-Valat wrote:

For window title labels, see bug 201829.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/29

------------------------------------------------------------------------
On 2011-11-21T18:19:11+00:00 Pierre-bugzilla wrote:

That doesn't seem to have been a correct bug number. :)

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/30

------------------------------------------------------------------------
On 2011-11-21T18:24:27+00:00 Milan Bouchet-Valat wrote:

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. ;-)

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/31

------------------------------------------------------------------------
On 2011-12-21T13:33:54+00:00 Lapo Calamandrei wrote:

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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/32

------------------------------------------------------------------------
On 2011-12-21T13:36:15+00:00 Lapo Calamandrei wrote:

Also the space between grid cells could be reduced quite a bit.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/33

------------------------------------------------------------------------
On 2011-12-22T07:31:07+00:00 Pierre-bugzilla wrote:

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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/34

------------------------------------------------------------------------
On 2012-01-14T02:18:38+00:00 Alexhultman-0 wrote:

(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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/35

------------------------------------------------------------------------
On 2012-01-14T02:37:51+00:00 Alexhultman-0 wrote:

Forget about the css being too general stuff I might misunderstood that
but what's the status on this?

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/36

------------------------------------------------------------------------
On 2012-01-14T10:58:52+00:00 Pierre-bugzilla wrote:

Feel free to hack away. I don't have any more work right now that isn't
attached to this bug.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/37

------------------------------------------------------------------------
On 2012-01-14T14:52:39+00:00 Alexhultman-0 wrote:

Created attachment 205263
design

Is this what we are aiming at?

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/38

------------------------------------------------------------------------
On 2012-01-14T15:51:06+00:00 Alexhultman-0 wrote:

Created attachment 205266
design

-||-

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/39

------------------------------------------------------------------------
On 2012-01-23T18:49:40+00:00 Saurav wrote:

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?

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/40

------------------------------------------------------------------------
On 2012-01-23T19:03:17+00:00 Drago01 wrote:

(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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/41

------------------------------------------------------------------------
On 2012-02-25T15:26:36+00:00 Pierre-bugzilla wrote:

Created attachment 208407
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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/42

------------------------------------------------------------------------
On 2012-02-25T15:32:14+00:00 Pierre-bugzilla wrote:

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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/43

------------------------------------------------------------------------
On 2012-02-25T19:15:31+00:00 Jasper St. Pierre wrote:

(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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/44

------------------------------------------------------------------------
On 2012-02-26T13:37:10+00:00 Pierre-bugzilla wrote:

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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/45

------------------------------------------------------------------------
On 2012-02-26T13:45:37+00:00 Pierre-bugzilla wrote:

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...

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/46

------------------------------------------------------------------------
On 2012-02-26T14:08:18+00:00 Pierre-bugzilla wrote:

Crap... doesn't look like that helped me. The final dimensions seems to
be nicely hidden away from BaseIcon as well.

Ideas?

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/47

------------------------------------------------------------------------
On 2012-02-26T14:26:42+00:00 Pierre-bugzilla wrote:

Created attachment 208441
Fixed width, varying height

Compromise suggestion. The width is fixed for icon entries, but the
height varies depending on the size of the label.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/48

------------------------------------------------------------------------
On 2012-02-27T08:53:04+00:00 Allan Day wrote:

(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?

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/49

------------------------------------------------------------------------
On 2012-03-06T06:51:10+00:00 Pierre-bugzilla wrote:

Created attachment 209050
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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/50

------------------------------------------------------------------------
On 2012-05-04T08:51:34+00:00 Milan Bouchet-Valat wrote:

*** Bug 675419 has been marked as a duplicate of this bug. ***

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/55

------------------------------------------------------------------------
On 2012-05-04T08:53:28+00:00 Milan Bouchet-Valat wrote:

Could somebody review Pierre's patch? It's too bad it wasn't included in
3.4...

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/56

------------------------------------------------------------------------
On 2012-07-20T15:11:12+00:00 Reinout van Schouwen wrote:

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?

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/57

------------------------------------------------------------------------
On 2012-09-05T17:31:02+00:00 Jasper St. Pierre wrote:

*** Bug 682184 has been marked as a duplicate of this bug. ***

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/58

------------------------------------------------------------------------
On 2012-11-24T19:02:37+00:00 Drago01 wrote:

*** Bug 688984 has been marked as a duplicate of this bug. ***

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/59

------------------------------------------------------------------------
On 2012-11-25T15:58:22+00:00 Lapo Calamandrei wrote:

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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/60

------------------------------------------------------------------------
On 2013-01-06T18:04:57+00:00 Milan Bouchet-Valat wrote:

*** Bug 691235 has been marked as a duplicate of this bug. ***

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/61

------------------------------------------------------------------------
On 2013-01-08T12:11:32+00:00 Daniel Mustieles wrote:

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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/62

------------------------------------------------------------------------
On 2013-01-22T11:57:17+00:00 Daniel Mustieles wrote:

Any progress on this? If patches are ok, please commit them so we can
close this issue.

Thanks!

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/63

------------------------------------------------------------------------
On 2013-01-22T12:10:03+00:00 Pierre-bugzilla wrote:

I haven't had time to look at what was requested in comment #56.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/64

------------------------------------------------------------------------
On 2013-03-02T23:47:26+00:00 Allan Day wrote:

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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/65

------------------------------------------------------------------------
On 2013-07-16T22:56:31+00:00 Florian-muellner wrote:

*** Bug 704348 has been marked as a duplicate of this bug. ***

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/66

------------------------------------------------------------------------
On 2013-08-27T23:08:08+00:00 Allan Day wrote:

*** Bug 700388 has been marked as a duplicate of this bug. ***

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/67

------------------------------------------------------------------------
On 2013-08-27T23:08:34+00:00 Allan Day wrote:

Reassigning to overview.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/68

------------------------------------------------------------------------
On 2014-10-17T08:42:14+00:00 Florian-muellner wrote:

*** Bug 738651 has been marked as a duplicate of this bug. ***

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/69

------------------------------------------------------------------------
On 2014-11-07T19:15:16+00:00 Florian-muellner wrote:

*** Bug 674183 has been marked as a duplicate of this bug. ***

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/70

------------------------------------------------------------------------
On 2015-03-07T10:12:25+00:00 Florian-muellner wrote:

*** Bug 687589 has been marked as a duplicate of this bug. ***

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/71

------------------------------------------------------------------------
On 2015-08-05T11:47:47+00:00 Florian-muellner wrote:

*** Bug 753217 has been marked as a duplicate of this bug. ***

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/72

------------------------------------------------------------------------
On 2016-01-28T13:32:05+00:00 Florian-muellner wrote:

*** Bug 761244 has been marked as a duplicate of this bug. ***

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/73

------------------------------------------------------------------------
On 2016-04-28T20:37:04+00:00 Florian-muellner wrote:

*** Bug 765779 has been marked as a duplicate of this bug. ***

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/75

------------------------------------------------------------------------
On 2016-06-10T07:53:30+00:00 Gnome-org wrote:

Created attachment 329534
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?

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/76

------------------------------------------------------------------------
On 2016-06-11T11:51:49+00:00 Wise Melon wrote:

@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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/77

------------------------------------------------------------------------
On 2016-09-06T14:17:59+00:00 X-bugs wrote:

Just use this extension: https://extensions.gnome.org/extension/1071
/applications-overview-tooltip/

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/78

------------------------------------------------------------------------
On 2017-02-05T17:06:45+00:00 Florian-muellner wrote:

*** Bug 778186 has been marked as a duplicate of this bug. ***

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/79

------------------------------------------------------------------------
On 2017-05-04T21:07:28+00:00 Florian-muellner wrote:

*** Bug 782169 has been marked as a duplicate of this bug. ***

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/80

------------------------------------------------------------------------
On 2017-05-30T23:20:49+00:00 Marcus Sundman wrote:

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?

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/82

------------------------------------------------------------------------
On 2017-06-02T09:56:48+00:00 Allan Day wrote:

(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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/83

------------------------------------------------------------------------
On 2017-06-03T19:13:10+00:00 Nicolás Bértolo wrote:

(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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/84

------------------------------------------------------------------------
On 2017-06-05T22:26:56+00:00 Wise Melon wrote:

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?

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/85

------------------------------------------------------------------------
On 2017-06-06T09:42:39+00:00 Allan Day wrote:

(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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/88

------------------------------------------------------------------------
On 2017-06-06T13:17:03+00:00 Jeremy Bicha wrote:

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

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/90

------------------------------------------------------------------------
On 2017-07-06T22:39:20+00:00 Sebastien Bacher wrote:

Created attachment 355056
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...

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/91

------------------------------------------------------------------------
On 2017-07-07T15:43:10+00:00 Romano Giannetti wrote:

Just showing the full name (even more important for files) on mouse-over
would solve the problem, at least for non-touch interface.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/92

------------------------------------------------------------------------
On 2017-11-19T17:44:10+00:00 joshas wrote:

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.

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/93

------------------------------------------------------------------------
On 2018-04-27T08:09:51+00:00 Daniel van Vugt wrote:

A fix is pending:
https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/90

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/95

------------------------------------------------------------------------
On 2018-05-01T02:48:15+00:00 Daniel van Vugt wrote:

And another fix is pending:
https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/58

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/97

------------------------------------------------------------------------
On 2018-05-26T11:22:21+00:00 Andre Klapper wrote:

*** Bug 796404 has been marked as a duplicate of this bug. ***

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/98

------------------------------------------------------------------------
On 2018-05-31T16:58:16+00:00 Florian-muellner wrote:

*** Bug 687969 has been marked as a duplicate of this bug. ***

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/99

------------------------------------------------------------------------
On 2018-06-05T02:54:25+00:00 Daniel van Vugt wrote:

And another fix is pending:
https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/109

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/101

------------------------------------------------------------------------
On 2018-07-01T17:50:01+00:00 Piotr Drąg wrote:

*** Bug 796726 has been marked as a duplicate of this bug. ***

Reply at: https://bugs.launchpad.net/ubuntu/+source/gnome-
shell/+bug/968213/comments/102


** Changed in: gnome-shell
       Status: Unknown => Confirmed

** Changed in: gnome-shell
   Importance: Unknown => Medium

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

Title:
  Too many icons in Gnome Shell Activities Overview require ellipses

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/968213/+subscriptions

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

Reply via email to