Skip to content

Commit 4b0ddf2

Browse files
committed
add spacing to image table scroll bar. resolves #163
1 parent 080fedb commit 4b0ddf2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Gui/Views/ImageTableView.axaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@
4444
</StackPanel>
4545
<Grid ColumnDefinitions="*, Auto, 384">
4646
<ScrollViewer>
47-
<Border BorderThickness="1">
47+
<DockPanel>
48+
<Panel Width="12" DockPanel.Dock="Right"></Panel>
4849
<ListBox ItemsSource="{Binding Bitmaps}" SelectionMode="Multiple" Selection="{Binding SelectionModel}" Background="{Binding #ImageBackgroundColorView.Color, ConverterParameter={x:Static Brushes.Transparent}, Converter={StaticResource ColorToBrushConverter}}">
4950
<ListBox.ItemsPanel>
5051
<ItemsPanelTemplate>
@@ -63,7 +64,7 @@
6364
</DataTemplate>
6465
</ListBox.ItemTemplate>
6566
</ListBox>
66-
</Border>
67+
</DockPanel>
6768
</ScrollViewer>
6869
<GridSplitter Grid.Column="1" />
6970
<Border BorderThickness="1" Grid.Column="2">

0 commit comments

Comments
 (0)