AssetStudio/UnityStudio/GOHierarchy.cs
Perfare f87390cc2b Update README.md
Updated project
Support 2017.4
2018-03-25 13:53:52 +08:00

18 lines
363 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace UnityStudio
{
public class GOHierarchy : TreeView
{
protected override void WndProc(ref Message m)
{
// Filter WM_LBUTTONDBLCLK
if (m.Msg != 0x203) base.WndProc(ref m);
}
}
}