From 373c0b1cc39916c71b9184670897b73d5009a317 Mon Sep 17 00:00:00 2001
From: chylex <contact@chylex.com>
Date: Wed, 11 Oct 2017 20:34:50 +0200
Subject: [PATCH] Fix separator before 'Open dev tools' in example notification
 context menu

---
 Core/Handling/ContextMenuNotification.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Core/Handling/ContextMenuNotification.cs b/Core/Handling/ContextMenuNotification.cs
index 02b90dbd..5651a45e 100644
--- a/Core/Handling/ContextMenuNotification.cs
+++ b/Core/Handling/ContextMenuNotification.cs
@@ -48,7 +48,7 @@ public override void OnBeforeContextMenu(IWebBrowser browserControl, IBrowser br
             }
             
             if (HasDevTools){
-                model.AddSeparator();
+                AddSeparator(model);
                 AddDebugMenuItems(model);
             }