We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b94d2aa + c455f8e commit 022dcd6Copy full SHA for 022dcd6
Editor/UIToolkit/SettingsWindow/PackageSettingsWindow.cs
@@ -25,6 +25,15 @@ public abstract class PackageSettingsWindow<TWindow> : EditorWindow where TWindo
25
26
readonly string m_WindowUIFilesRootPath = $"{PluginsDevKitPackage.UIToolkitPath}/SettingsWindow";
27
28
+ /// <summary>
29
+ /// Set/Get the flexible growth property of tabs content container
30
+ /// </summary>
31
+ public StyleFloat ContentFlexGrow
32
+ {
33
+ get => m_TabsContainer.contentContainer.style.flexGrow;
34
+ set => m_TabsContainer.contentContainer.style.flexGrow = value;
35
+ }
36
+
37
void OnEnable()
38
{
39
// This is a workaround due to a very weird bug.
0 commit comments