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 316621 - Offline account icons indistinguishable from online
Offline account icons indistinguishable from online
Status: RESOLVED FIXED
Product: gossip
Classification: Deprecated
Component: General
0.9
Other Linux
: Normal normal
: ---
Assigned To: Gossip Maintainers
Gossip Maintainers
Depends on:
Blocks:
 
 
Reported: 2005-09-18 12:18 UTC by Tommi Komulainen
Modified: 2005-09-18 18:59 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
screenshot of options (5.58 KB, image/png)
2005-09-18 12:22 UTC, Tommi Komulainen
Details

Description Tommi Komulainen 2005-09-18 12:18:08 UTC
The difference between online and offline account icons is way too subtle to be
noticeable. At least on my laptop screen one needs xmag to figure out there
actually is a difference.

It would be best to have different shape, or little emblem, for the other icon,
but even with colors/contrast one can already make a big difference.
Comment 1 Tommi Komulainen 2005-09-18 12:22:15 UTC
Created attachment 52361 [details]
screenshot of options

'current' is as gossip currently shows the icons, i.e.
  gdk_pixbuf_saturate_and_pixelate (pixbuf, pixbuf, online ? 1.5 : 0, FALSE);

'pixelate' is implemented as:
  gdk_pixbuf_saturate_and_pixelate (pixbuf, pixbuf, 1.0, !online);

'insensitive' is implemented as:
  gtk_widget_set_sensitive (GTK_WIDGET (image), online);


For me either one of the alternatives provides much more clear distinction, but
I think I prefer the pixelated one.
Comment 2 Martyn Russell 2005-09-18 18:59:00 UTC
Superb, thanks Tommi, I love the pixelate option, and have applied this!