From: <rl...@us...> - 2006-05-12 20:21:44
|
Revision: 16181 Author: rlaager Date: 2006-05-12 13:21:35 -0700 (Fri, 12 May 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16181&view=rev Log Message: ----------- SF Patch #1475297 points out that the side tab width is too much for people with lower resolutions. We've had a couple complaints. I e-mailed gaim-devel and I don't remember any responses (nor do I see any in my e-mail archive). I'm changing the side tab with from 18 to 12. The submitter of that patch item suggested 10, but I compromised a bit. If you object to this, let me know (or commit something else). Modified Paths: -------------- trunk/src/gtkconv.c Modified: trunk/src/gtkconv.c =================================================================== --- trunk/src/gtkconv.c 2006-05-12 03:45:47 UTC (rev 16180) +++ trunk/src/gtkconv.c 2006-05-12 20:21:35 UTC (rev 16181) @@ -7535,7 +7535,7 @@ g_object_set(G_OBJECT(gtkconv->tab_label), "ellipsize", PANGO_ELLIPSIZE_END, NULL); gtk_label_set_width_chars(GTK_LABEL(gtkconv->tab_label), 6); if (tabs_side) { - gtk_label_set_width_chars(GTK_LABEL(gtkconv->tab_label), MIN(g_utf8_strlen(tmp_lab, -1), 18)); + gtk_label_set_width_chars(GTK_LABEL(gtkconv->tab_label), MIN(g_utf8_strlen(tmp_lab, -1), 12)); } if (angle) gtk_label_set_angle(GTK_LABEL(gtkconv->tab_label), angle); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |