Browse Source

Fix #1056: "Language" combobox drop-list truncates in debug builds [patch]

pull/1051/head
Siegfried Pammer 7 years ago
parent
commit
116725e21c
  1. 2
      ILSpy/MainWindow.xaml

2
ILSpy/MainWindow.xaml

@ -78,7 +78,7 @@ @@ -78,7 +78,7 @@
<Image Width="16" Height="16" Source="Images/PrivateInternal.png" />
</CheckBox>
<Separator />
<ComboBox Name="languageComboBox" DisplayMemberPath="Name" Width="100"
<ComboBox Name="languageComboBox" DisplayMemberPath="Name" Width="100" MaxDropDownHeight="Auto"
ItemsSource="{x:Static local:Languages.AllLanguages}"
SelectedItem="{Binding FilterSettings.Language}"/>
</ToolBar>

Loading…
Cancel
Save