mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-16 11:48:06 +01: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:
@@ -195,9 +195,10 @@
|
|||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
<ContentDialog x:Name="SelectedFilesListDialog" x:Uid="SelectedFilesListDialog">
|
<ContentDialog x:Name="SelectedFilesListDialog" x:Uid="SelectedFilesListDialog">
|
||||||
<ScrollViewer Padding="0,0,16,0">
|
<TextBlock
|
||||||
<TextBlock IsTextSelectionEnabled="True" Text="{x:Bind ViewModel.PathsToString, Mode=OneWay}" />
|
IsTextSelectionEnabled="True"
|
||||||
</ScrollViewer>
|
Text="{x:Bind ViewModel.PathsToString, Mode=OneWay}"
|
||||||
|
TextWrapping="Wrap" />
|
||||||
</ContentDialog>
|
</ContentDialog>
|
||||||
</Grid>
|
</Grid>
|
||||||
</Page>
|
</Page>
|
||||||
|
|||||||
Reference in New Issue
Block a user