=== modified file 'Do.Interface.Linux.Docky/src/Docky.Interface/Docky.Interface.Painters/CalendarPainter.cs' --- Do.Interface.Linux.Docky/src/Docky.Interface/Docky.Interface.Painters/CalendarPainter.cs 2009-03-07 22:50:28 +0000 +++ Do.Interface.Linux.Docky/src/Docky.Interface/Docky.Interface.Painters/CalendarPainter.cs 2009-05-06 20:55:00 +0000 @@ -21,8 +21,10 @@ using Cairo; using Gdk; +using Gtk; using Do.Interface; +using Do.Interface.CairoUtils; using Docky.Core; using Docky.Interface; @@ -126,7 +128,13 @@ textContext.Text = string.Format ("{0:00}", day.Day); if (day.Date == DateTime.Today) + { + Style style = Docky.Interface.DockWindow.Window.Style; + Gdk.Color color = style.Backgrounds [(int) StateType.Selected].SetMinimumValue (100); + cr.Color = color.ConvertToCairo (1.0); + textContext.Text = string.Format (BoldFormatString, textContext.Text); + } dayOffset++; } textContext.LeftCenteredPoint = new Gdk.Point (paintArea.X + offsetSize * i, centerLine);