mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-06 02:09:06 +00:00
9 lines
158 B
C#
9 lines
158 B
C#
|
namespace AIStudio.Settings;
|
||
|
|
||
|
public enum NavBehavior
|
||
|
{
|
||
|
EXPAND_ON_HOVER,
|
||
|
NEVER_EXPAND_USE_TOOLTIPS,
|
||
|
NEVER_EXPAND_NO_TOOLTIPS,
|
||
|
ALWAYS_EXPAND,
|
||
|
}
|