mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-11-27 23:19:13 +08:00
[FileLocksmith] Wrap path into multiple lines in Selected file paths UI (#31644)
* [FileLocksmith] Add scroll to path in Selected file paths UI * [FileLocksmith] Make path wrap into multiple lines in Selected paths UI Earlier, the path was getting truncated within a single line. Fixes microsoft#26489
This commit is contained in:
parent
fdc723b047
commit
ade871caef
@ -195,9 +195,10 @@
|
||||
</Grid>
|
||||
|
||||
<ContentDialog x:Name="SelectedFilesListDialog" x:Uid="SelectedFilesListDialog">
|
||||
<ScrollViewer Padding="0,0,16,0">
|
||||
<TextBlock IsTextSelectionEnabled="True" Text="{x:Bind ViewModel.PathsToString, Mode=OneWay}" />
|
||||
</ScrollViewer>
|
||||
<TextBlock
|
||||
IsTextSelectionEnabled="True"
|
||||
Text="{x:Bind ViewModel.PathsToString, Mode=OneWay}"
|
||||
TextWrapping="Wrap" />
|
||||
</ContentDialog>
|
||||
</Grid>
|
||||
</Page>
|
||||
|
Loading…
Reference in New Issue
Block a user