Method: Fox::Canvas::ShapeCanvas#deselectShape
- Defined in:
- lib/fox16/canvas.rb
#deselectShape(shape, notify = false) ⇒ Object
Deselect one shape
449 450 451 452 453 454 455 |
# File 'lib/fox16/canvas.rb', line 449 def deselectShape(shape, notify=false) if @scene.include?(shape) @selectionPolicy.deselectShape(shape, notify) else raise CanvasError end end |