mirror of
https://github.com/aelurum/AssetStudio.git
synced 2025-07-18 03:24:15 -04:00
Initial commit
This commit is contained in:
17
Unity Studio/GOHierarchy.cs
Normal file
17
Unity Studio/GOHierarchy.cs
Normal file
@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace Unity_Studio
|
||||
{
|
||||
public class GOHierarchy : TreeView
|
||||
{
|
||||
protected override void WndProc(ref Message m)
|
||||
{
|
||||
// Filter WM_LBUTTONDBLCLK
|
||||
if (m.Msg != 0x203) base.WndProc(ref m);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user