1
0
mirror of https://github.com/Siccity/xNode.git synced 2025-12-20 09:16:01 +08:00

Minor bugfix to LogicGraphEditor

This commit is contained in:
Thor Brigsted 2021-02-12 13:06:56 +01:00 committed by GitHub
parent 754a5f66af
commit 03dd476f9f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -60,7 +60,7 @@ namespace XNodeEditor.Examples.LogicToy {
/// <summary> Controls graph type colors </summary>
public override Color GetTypeColor(System.Type type) {
if (type == typeof(bool)) return boolColor;
else return GetTypeColor(type);
else return base.GetTypeColor(type);
}
/// <summary> Returns the time at which an arbitrary object was last 'on' </summary>