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:
parent
754a5f66af
commit
03dd476f9f
@ -60,7 +60,7 @@ namespace XNodeEditor.Examples.LogicToy {
|
|||||||
/// <summary> Controls graph type colors </summary>
|
/// <summary> Controls graph type colors </summary>
|
||||||
public override Color GetTypeColor(System.Type type) {
|
public override Color GetTypeColor(System.Type type) {
|
||||||
if (type == typeof(bool)) return boolColor;
|
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>
|
/// <summary> Returns the time at which an arbitrary object was last 'on' </summary>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user