]> O.S.I.I.S - jp/crow.git/commitdiff
debug
authorjpbruyere <jp.bruyere@hotmail.com>
Mon, 8 Feb 2016 21:13:02 +0000 (22:13 +0100)
committerjpbruyere <jp.bruyere@hotmail.com>
Mon, 8 Feb 2016 21:13:02 +0000 (22:13 +0100)
src/GraphicObjects/Popper.cs

index 66cb4884cb317e0ee1aa79752a1f6c741f238dea..e0b821a8d453aeb6fe908b506be8e372273c9503 100644 (file)
@@ -40,7 +40,6 @@ namespace Crow
                                if (_content != null) {
                                        _content.LogicalParent = null;
                                        _content.LayoutChanged -= _content_LayoutChanged;
-                                       _content.MouseLeave -= _content_MouseLeave;
                                }
                                
                                _content = value; 
@@ -49,9 +48,7 @@ namespace Crow
                                        return;
 
                                _content.LogicalParent = this;
-                               _content.Focusable = true;
                                _content.LayoutChanged += _content_LayoutChanged;
-                               _content.MouseLeave += _content_MouseLeave;
                        }
                }