From: jpbruyere Date: Mon, 8 Feb 2016 21:13:02 +0000 (+0100) Subject: debug X-Git-Tag: 0.3~26 X-Git-Url: https://git.osiis.dedyn.io/?a=commitdiff_plain;h=53928ccbdda3ff284432aa668b81f4f733384b0c;p=jp%2Fcrow.git debug --- diff --git a/src/GraphicObjects/Popper.cs b/src/GraphicObjects/Popper.cs index 66cb4884..e0b821a8 100644 --- a/src/GraphicObjects/Popper.cs +++ b/src/GraphicObjects/Popper.cs @@ -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; } }