Browse Source

use CharacterEllipsis instead of WordEllipsis in TaskView

pull/59/merge
Siegfried Pammer 12 years ago
parent
commit
d64dff7ef1
  1. 4
      src/Main/Base/Project/Src/Gui/Pads/TaskList/TaskViewResources.xaml

4
src/Main/Base/Project/Src/Gui/Pads/TaskList/TaskViewResources.xaml

@ -26,7 +26,7 @@ @@ -26,7 +26,7 @@
Header="{core:Localize CompilerResultView.DescriptionText}">
<core:SortableGridViewColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding Description}" TextTrimming="WordEllipsis" SizeChanged="TextBlockSizeChanged" />
<TextBlock Text="{Binding Description}" TextTrimming="CharacterEllipsis" SizeChanged="TextBlockSizeChanged" />
</DataTemplate>
</core:SortableGridViewColumn.CellTemplate>
</core:SortableGridViewColumn>
@ -37,7 +37,7 @@ @@ -37,7 +37,7 @@
Header="{core:Localize Global.Path}">
<core:SortableGridViewColumn.CellTemplate>
<DataTemplate>
<TextBlock Text="{Binding Path}" TextTrimming="WordEllipsis" SizeChanged="TextBlockSizeChanged" />
<TextBlock Text="{Binding Path}" TextTrimming="CharacterEllipsis" SizeChanged="TextBlockSizeChanged" />
</DataTemplate>
</core:SortableGridViewColumn.CellTemplate>
</core:SortableGridViewColumn>

Loading…
Cancel
Save