Skip to content

Commit 0f686dc

Browse files
committed
disable conversation list virtualization for now
to dirty-fix some NREs. Will get back to this as soon as we find the time or it becomes an issue. fixes #70
1 parent 4c9f381 commit 0f686dc

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Signal-Windows/Views/MainPage.xaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,11 @@
3838
</Button>
3939
<AutoSuggestBox Grid.Row="1" Margin="16"/>
4040
<ListView Grid.Row="2" Name="ContactsList" ItemsSource="{x:Bind Vm.Threads}" SelectionMode="Single" SelectionChanged="ContactsList_SelectionChanged">
41+
<ListView.ItemsPanel>
42+
<ItemsPanelTemplate>
43+
<StackPanel></StackPanel>
44+
</ItemsPanelTemplate>
45+
</ListView.ItemsPanel>
4146
<ListView.ItemContainerStyle>
4247
<Style TargetType="ListViewItem">
4348
<Setter Property="HorizontalContentAlignment" Value="Stretch" />

0 commit comments

Comments
 (0)