From 8cef4eb4bbcf8e4beb68d8c4e54832618cc712de Mon Sep 17 00:00:00 2001 From: Sayamindu Dasgupta Date: Tue, 09 Sep 2008 14:24:36 +0000 Subject: Make pencil tool use the brush (partial workaround for #8285) --- (limited to 'Desenho.py') diff --git a/Desenho.py b/Desenho.py index 88c3449..91d19f2 100644 --- a/Desenho.py +++ b/Desenho.py @@ -471,22 +471,6 @@ class Desenho: pixmap.draw_arc(widget.gc_line,False,x,y,dx,dy,0,360*64) widget.queue_draw() - - def pencil(self, widget, coords): - """Draw a pencil. - - @param self -- Desenho.Desenho instance - @param widget -- Area object (GtkDrawingArea) - @param coords -- Two value tuple - - """ - width, height = widget.window.get_size() - widget.pixmap_temp.draw_drawable(widget.gc,widget.pixmap, 0 , 0 ,0,0, width, height) - widget.pixmap.draw_line(widget.gc_line,widget.oldx,widget.oldy,coords[0],coords[1]) - widget.oldx = coords[0] - widget.oldy = coords[1] - widget.queue_draw() - def clear(self, widget): """Clear the drawing. -- cgit v0.9.1