[ease: 1/3] Fixed white ring appearing around handles.



commit 54455491c31a8eccde534aed456e713a08c690f3
Author: Nate Stedman <natesm gmail com>
Date:   Sat Nov 27 14:35:13 2010 -0500

    Fixed white ring appearing around handles.
    
    * Handles that had been clicked would have a white ring
      surrounding them in the unselected mode because the
      white texture did not get cleared when switching modes.

 ease/ease-handle.vala |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)
---
diff --git a/ease/ease-handle.vala b/ease/ease-handle.vala
index 693bb32..0eccdf3 100644
--- a/ease/ease-handle.vala
+++ b/ease/ease-handle.vala
@@ -301,6 +301,9 @@ internal class Ease.Handle : Clutter.CairoTexture
 	
 	private void redraw()
 	{
+		// clear to prevent a white halo from occuring
+		clear();
+		
 		// get a Cairo context
 		var cr = create();
 		



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