mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 00:08:51 -05:00
12 lines
304 B
C#
12 lines
304 B
C#
using UnityEditor.IMGUI.Controls;
|
|
|
|
namespace TriInspectorUnityInternalBridge
|
|
{
|
|
internal class AdvancedDropdownProxy
|
|
{
|
|
public static void SetShowHeader(AdvancedDropdown dropdown, bool showHeader)
|
|
{
|
|
dropdown.m_WindowInstance.showHeader = showHeader;
|
|
}
|
|
}
|
|
} |