[evolution/evolution-3-12] Always use selected color for selected region in EDayView



commit 2c4048bd5dc1e44e17ca64f0b9793f4a45ce4fc2
Author: Milan Crha <mcrha redhat com>
Date:   Mon Jul 21 15:45:48 2014 +0200

    Always use selected color for selected region in EDayView
    
    It used focused or unfocused selected color, but the EDayView itself
    is not focused at all, it's main_item->parent.canvas instead. Instead
    of trying to hunt for this (and updates when the focused widget changes)
    just use the same selected color unconditionally, just the way the other
    views do it.

 calendar/gui/e-day-view-main-item.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/calendar/gui/e-day-view-main-item.c b/calendar/gui/e-day-view-main-item.c
index be2f96f..ae70909 100644
--- a/calendar/gui/e-day-view-main-item.c
+++ b/calendar/gui/e-day-view-main-item.c
@@ -1147,7 +1147,7 @@ day_view_main_item_draw (GnomeCanvasItem *canvas_item,
 
                        if (can_draw_in_region (draw_region, rect_x, rect_y, rect_width, rect_height)) {
                                cairo_save (cr);
-                               gdk_cairo_set_source_color (cr, &day_view->colors[gtk_widget_has_focus 
(GTK_WIDGET (day_view)) ? E_DAY_VIEW_COLOR_BG_SELECTED : E_DAY_VIEW_COLOR_BG_SELECTED_UNFOCUSSED]);
+                               gdk_cairo_set_source_color (cr, 
&day_view->colors[E_DAY_VIEW_COLOR_BG_SELECTED]);
                                cairo_rectangle (cr, rect_x, rect_y, rect_width, rect_height);
                                cairo_fill (cr);
                                cairo_restore (cr);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]