diff doodle/gtk/cairo_renderer.d @ 89:467febed7367

* Ignore excre * Some tentative work in grid_layer.d * Give the ScreenModel to all the layers. This needs refinement. * A stroke wouldn't hurt occasionally in cairo_renderer.d
author David Bryant <bagnose@gmail.com>
date Thu, 19 Aug 2010 00:19:42 +0930
parents cdd4fc728d94
children bc5baa585b32
line wrap: on
line diff
--- a/doodle/gtk/cairo_renderer.d	Wed Aug 18 23:51:43 2010 +0930
+++ b/doodle/gtk/cairo_renderer.d	Thu Aug 19 00:19:42 2010 +0930
@@ -64,6 +64,7 @@
     void drawVLine(in double x, in double y0, in double y1) {
         _cr.moveTo(x, y0);
         _cr.lineTo(x, y1);
+        _cr.stroke;
     }
 
     void drawPoly(in Point[] points, bool fill = false) {