From 53928ccbdda3ff284432aa668b81f4f733384b0c Mon Sep 17 00:00:00 2001 From: jpbruyere Date: Mon, 8 Feb 2016 22:13:02 +0100 Subject: [PATCH] debug --- src/GraphicObjects/Popper.cs | 3 --- 1 file changed, 3 deletions(-) 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; } } -- 2.47.3