From 422ad4ecfea376a950aa282a045e665f4bb8a6de Mon Sep 17 00:00:00 2001 From: Trevor Williams Date: Wed, 19 Sep 2018 14:07:04 -0500 Subject: [PATCH] * Fixing issue where the mode property of the Node class was given a default value in the property. --- src/Node.vala | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Node.vala b/src/Node.vala index 6db16ac7..55348b1c 100644 --- a/src/Node.vala +++ b/src/Node.vala @@ -170,7 +170,6 @@ public class Node : Object { _selanchor = 0; _cursor = _selend; } - default = NodeMode.NONE; } public Node? parent { get; protected set; default = null; } public NodeSide side { get; set; default = NodeSide.RIGHT; }