!B (Sandbox) (CE-21795) Importing models with multisubmaterials via fbx switches...
[CRYENGINE.git] / Code / Tools / Statoscope / Statoscope / TRDICheckboxTreeView.cs
blobe248cafbdef8ad2422f5a4e829a9c6f87bf4b296
1 // Copyright 2001-2019 Crytek GmbH / Crytek Group. All rights reserved.
3 using System.Windows.Forms;
5 namespace Statoscope
7 public class TRDICheckboxTreeView : EditableRDICheckboxTreeView<TargetLineRDI>
9 public TRDICheckboxTreeView(LogControl logControl, TargetLineRDI trdiTree)
10 : base(logControl, trdiTree)
14 public override void RenameNode(TreeNode node, string newName)
16 TargetLineRDI trdi = (TargetLineRDI)node.Tag;
17 trdi.NameFromValue = false;
19 base.RenameNode(node, newName);