Skip to content

Commit 68de030

Browse files
committed
Fix TaskScrollView style.
1 parent b4f260e commit 68de030

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
1-
using UnityMvvmToolkit.UITK.BindableUIElements;
1+
using UnityEngine.UIElements;
2+
using UnityMvvmToolkit.UITK.BindableUIElements;
23
using ViewModels;
34

45
namespace BindableUIElements
56
{
67
public partial class BindableTaskScrollView : BindableScrollView<TaskItemViewModel>
78
{
9+
public override void Initialize()
10+
{
11+
base.Initialize();
12+
13+
contentViewport.style.overflow = Overflow.Visible;
14+
contentContainer.style.overflow = Overflow.Visible;
15+
}
816
}
917
}

0 commit comments

Comments
 (0)