diff options
author | Damon Chaplin <damon@ximian.com> | 2001-08-22 03:06:17 +0800 |
---|---|---|
committer | Damon Chaplin <damon@src.gnome.org> | 2001-08-22 03:06:17 +0800 |
commit | c8905eabfcb6120fbf7f4ba67043d1780396dc01 (patch) | |
tree | 2642e85770860b956abd09c6728e1e11cc9517cb /calendar/gui/e-day-view.c | |
parent | a70082de9ea4f4558d6494efc5e130250ed99448 (diff) | |
download | gsoc2013-evolution-c8905eabfcb6120fbf7f4ba67043d1780396dc01.tar.gz gsoc2013-evolution-c8905eabfcb6120fbf7f4ba67043d1780396dc01.tar.zst gsoc2013-evolution-c8905eabfcb6120fbf7f4ba67043d1780396dc01.zip |
added new e-sexp operator. We don't currently use it though.
2001-08-21 Damon Chaplin <damon@ximian.com>
* pcs/query.c (func_is_completed): added new e-sexp operator. We
don't currently use it though.
* gui/dialogs/cal-prefs-dialog.glade: Changed '_Overdue' to 'O_verdue'
since we have an '_Other' notebook tab. Added '_Hide' accel.
* gui/dialogs/cal-prefs-dialog.c: hooked up config options to dialog.
* gui/calendar-config.c: added config options for hiding completed
tasks.
* gui/e-week-view-event-item.c (e_week_view_event_item_draw):
* gui/e-day-view-top-item.c (e_day_view_top_item_draw_long_event):
* gui/e-day-view.c (e_day_view_reshape_long_event): added 2 pixels
extra space between icons and text for long events, and 1 pixel space
between icons in all events.
(e_day_view_realize): changed the background color to match the
EGrayBar in the shell.
svn path=/trunk/; revision=12347
Diffstat (limited to 'calendar/gui/e-day-view.c')
-rw-r--r-- | calendar/gui/e-day-view.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/calendar/gui/e-day-view.c b/calendar/gui/e-day-view.c index ca5be3bd6f..4b11b89437 100644 --- a/calendar/gui/e-day-view.c +++ b/calendar/gui/e-day-view.c @@ -971,13 +971,13 @@ e_day_view_realize (GtkWidget *widget) day_view->colors[E_DAY_VIEW_COLOR_BG_SELECTED].green = 0 * 257; day_view->colors[E_DAY_VIEW_COLOR_BG_SELECTED].blue = 156 * 257; - day_view->colors[E_DAY_VIEW_COLOR_BG_GRID].red = 32512; - day_view->colors[E_DAY_VIEW_COLOR_BG_GRID].green = 32512; - day_view->colors[E_DAY_VIEW_COLOR_BG_GRID].blue = 32512; + day_view->colors[E_DAY_VIEW_COLOR_BG_GRID].red = 0x8000; + day_view->colors[E_DAY_VIEW_COLOR_BG_GRID].green = 0x8000; + day_view->colors[E_DAY_VIEW_COLOR_BG_GRID].blue = 0x8000; - day_view->colors[E_DAY_VIEW_COLOR_BG_TOP_CANVAS].red = 32512; - day_view->colors[E_DAY_VIEW_COLOR_BG_TOP_CANVAS].green = 32512; - day_view->colors[E_DAY_VIEW_COLOR_BG_TOP_CANVAS].blue = 32512; + day_view->colors[E_DAY_VIEW_COLOR_BG_TOP_CANVAS].red = 0x8000; + day_view->colors[E_DAY_VIEW_COLOR_BG_TOP_CANVAS].green = 0x8000; + day_view->colors[E_DAY_VIEW_COLOR_BG_TOP_CANVAS].blue = 0x8000; day_view->colors[E_DAY_VIEW_COLOR_BG_TOP_CANVAS_SELECTED].red = 65535; day_view->colors[E_DAY_VIEW_COLOR_BG_TOP_CANVAS_SELECTED].green = 65535; @@ -4650,7 +4650,7 @@ e_day_view_reshape_long_event (EDayView *day_view, the left edge of the available space. Finally we make sure we don't go off the right edge. */ icons_width = (E_DAY_VIEW_ICON_WIDTH + E_DAY_VIEW_ICON_X_PAD) - * num_icons; + * num_icons + E_DAY_VIEW_LONG_EVENT_ICON_R_PAD; time_width = e_day_view_get_time_string_width (day_view); if (use_max_width) { |