Browse Source

use CharacterEllipsis instead of WordEllipsis in TaskView

pull/59/merge
Siegfried Pammer 13 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 @@
Header="{core:Localize CompilerResultView.DescriptionText}"> Header="{core:Localize CompilerResultView.DescriptionText}">
<core:SortableGridViewColumn.CellTemplate> <core:SortableGridViewColumn.CellTemplate>
<DataTemplate> <DataTemplate>
<TextBlock Text="{Binding Description}" TextTrimming="WordEllipsis" SizeChanged="TextBlockSizeChanged" /> <TextBlock Text="{Binding Description}" TextTrimming="CharacterEllipsis" SizeChanged="TextBlockSizeChanged" />
</DataTemplate> </DataTemplate>
</core:SortableGridViewColumn.CellTemplate> </core:SortableGridViewColumn.CellTemplate>
</core:SortableGridViewColumn> </core:SortableGridViewColumn>
@ -37,7 +37,7 @@
Header="{core:Localize Global.Path}"> Header="{core:Localize Global.Path}">
<core:SortableGridViewColumn.CellTemplate> <core:SortableGridViewColumn.CellTemplate>
<DataTemplate> <DataTemplate>
<TextBlock Text="{Binding Path}" TextTrimming="WordEllipsis" SizeChanged="TextBlockSizeChanged" /> <TextBlock Text="{Binding Path}" TextTrimming="CharacterEllipsis" SizeChanged="TextBlockSizeChanged" />
</DataTemplate> </DataTemplate>
</core:SortableGridViewColumn.CellTemplate> </core:SortableGridViewColumn.CellTemplate>
</core:SortableGridViewColumn> </core:SortableGridViewColumn>

Loading…
Cancel
Save