Fix 1891491: Only show bline vertices large when the mouse is really hovering over...
authordooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Mon, 11 Feb 2008 21:54:07 +0000 (21:54 +0000)
committerdooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Mon, 11 Feb 2008 21:54:07 +0000 (21:54 +0000)
git-svn-id: http://svn.voria.com/code@1678 1f10aa63-cdf2-0310-b900-c93c546f37ac

synfig-studio/trunk/src/gtkmm/duck.cpp

index 7c5ba66..58b0c64 100644 (file)
@@ -86,7 +86,8 @@ Duck::Duck(const synfig::Point &point):
        guid_(0),
        editable(false),
        radius_(false),
-       tangent_(false)
+       tangent_(false),
+       hover_(false)
 { duck_count++; _DuckCounter::counter++;}
 
 Duck::Duck(const synfig::Point &point,const synfig::Point &origin):
@@ -97,7 +98,8 @@ Duck::Duck(const synfig::Point &point,const synfig::Point &origin):
        guid_(0),
        editable(false),
        radius_(true),
-       tangent_(false)
+       tangent_(false),
+       hover_(false)
 { duck_count++; _DuckCounter::counter++;}
 
 Duck::~Duck() { duck_count--; _DuckCounter::counter--;}