diff options
author | Damon Chaplin <damon@helixcode.com> | 2001-01-15 09:56:39 +0800 |
---|---|---|
committer | Damon Chaplin <damon@src.gnome.org> | 2001-01-15 09:56:39 +0800 |
commit | a27517d2d749bda92eb9232840bf8a87cd3ae80a (patch) | |
tree | 081f628a2fcabee79ecfc679146fcbcbb641cb88 /calendar/gui | |
parent | 84d79685129c2c31a99eef621aa6bb03112e4573 (diff) | |
download | gsoc2013-evolution-a27517d2d749bda92eb9232840bf8a87cd3ae80a.tar gsoc2013-evolution-a27517d2d749bda92eb9232840bf8a87cd3ae80a.tar.gz gsoc2013-evolution-a27517d2d749bda92eb9232840bf8a87cd3ae80a.tar.bz2 gsoc2013-evolution-a27517d2d749bda92eb9232840bf8a87cd3ae80a.tar.lz gsoc2013-evolution-a27517d2d749bda92eb9232840bf8a87cd3ae80a.tar.xz gsoc2013-evolution-a27517d2d749bda92eb9232840bf8a87cd3ae80a.tar.zst gsoc2013-evolution-a27517d2d749bda92eb9232840bf8a87cd3ae80a.zip |
changed the expansion values so that small text fields are 1.0, all the
2001-01-14 Damon Chaplin <damon@helixcode.com>
* gui/e-calendar-table.c (E_CALENDAR_TABLE_SPEC): changed the expansion
values so that small text fields are 1.0, all the date fields and the
URL field are 2.0, and the Summary is 3.0. Hopefully the user will
resize the fields as desired, but at least this is a better start.
svn path=/trunk/; revision=7493
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/e-calendar-table.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/calendar/gui/e-calendar-table.c b/calendar/gui/e-calendar-table.c index 6ee22b9759..536051ea1f 100644 --- a/calendar/gui/e-calendar-table.c +++ b/calendar/gui/e-calendar-table.c @@ -177,16 +177,16 @@ static char *list [] = { " expansion=\"1.0\" minimum_width=\"10\" resizable=\"true\" " \ " cell=\"calstring\" compare=\"string\"/>" \ " <ETableColumn model_col= \"2\" _title=\"Completion Date\" " \ - " expansion=\"1.0\" minimum_width=\"10\" resizable=\"true\" " \ + " expansion=\"2.0\" minimum_width=\"10\" resizable=\"true\" " \ " cell=\"calstring\" compare=\"string\"/>" \ " <ETableColumn model_col= \"3\" _title=\"End Date\" " \ - " expansion=\"1.0\" minimum_width=\"10\" resizable=\"true\" " \ + " expansion=\"2.0\" minimum_width=\"10\" resizable=\"true\" " \ " cell=\"calstring\" compare=\"string\"/>" \ " <ETableColumn model_col= \"4\" _title=\"Start Date\" " \ - " expansion=\"1.0\" minimum_width=\"10\" resizable=\"true\" " \ + " expansion=\"2.0\" minimum_width=\"10\" resizable=\"true\" " \ " cell=\"calstring\" compare=\"string\"/>" \ " <ETableColumn model_col= \"5\" _title=\"Due Date\" " \ - " expansion=\"1.0\" minimum_width=\"10\" resizable=\"true\" " \ + " expansion=\"2.0\" minimum_width=\"10\" resizable=\"true\" " \ " cell=\"calstring\" compare=\"string\"/>" \ " <ETableColumn model_col= \"6\" _title=\"Geographical Position\" " \ " expansion=\"1.0\" minimum_width=\"10\" resizable=\"true\" " \ @@ -198,13 +198,13 @@ static char *list [] = { " expansion=\"1.0\" minimum_width=\"10\" resizable=\"true\" " \ " cell=\"calstring\" compare=\"string\"/>" \ " <ETableColumn model_col= \"9\" _title=\"Summary\" " \ - " expansion=\"1.0\" minimum_width=\"10\" resizable=\"true\" " \ + " expansion=\"3.0\" minimum_width=\"10\" resizable=\"true\" " \ " cell=\"calstring\" compare=\"string\"/>" \ " <ETableColumn model_col=\"10\" _title=\"Transparency\" " \ " expansion=\"1.0\" minimum_width=\"10\" resizable=\"true\" " \ " cell=\"calstring\" compare=\"string\"/>" \ " <ETableColumn model_col=\"11\" _title=\"URL\" " \ - " expansion=\"1.0\" minimum_width=\"10\" resizable=\"true\" " \ + " expansion=\"2.0\" minimum_width=\"10\" resizable=\"true\" " \ " cell=\"calstring\" compare=\"string\"/>" \ " <ETableColumn model_col=\"12\" _title=\"Alarms\" " \ " expansion=\"1.0\" minimum_width=\"10\" resizable=\"true\" " \ |