Files
YarikStudio/AssetStudio.GUI/Components/GOHierarchy.cs
2023-10-03 01:39:59 +04:00

18 lines
369 B
C#

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