Certain themes cause Conversation List to be squished: Closes #713954

Some themes (elementary's, Mint 16's Cinnamon theme) cause the
conversation list to appear squished.  It has to do with how the
conversation list calculates the size of each element at app
startup.
This commit is contained in:
Charles Lehner 2013-12-10 11:56:53 -08:00 committed by Jim Nelson
parent a92516c12f
commit 0e9cc04afb
2 changed files with 5 additions and 1 deletions

1
THANKS
View file

@ -16,6 +16,7 @@ Jens Georg <mail@jensge.org>
Michael George <mdgeorge@cs.cornell.edu>
Sven Hagemann <sven@rednose.nl>
Mathias Hasselmann <mathias@openismus.com>
Charles Lehner <rdm.cel@celehner.com>
Brendan Long <self@brendanlong.com>
Timo Kluck <tkluck@infty.nl>
Avi Levy <avi.w.levy@gmail.com>

View file

@ -264,7 +264,10 @@ public class FormattedConversationData : Geary.BaseObject {
x_offset = 0;
y_offset = 0;
width = 0;
// set width to 1 (rather than 0) to work around certain themes that cause the
// conversation list to be shown as "squished":
// https://bugzilla.gnome.org/show_bug.cgi?id=713954
width = 1;
height = cell_height;
}