mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-03-31 09:33:03 -06:00
Fix markdown not parsing for Persist Token tooltip
This commit is contained in:
parent
f0e9d3be1b
commit
3391e755fc
|
|
@ -59,10 +59,13 @@
|
||||||
</DockPanel>
|
</DockPanel>
|
||||||
|
|
||||||
<!-- Persist token -->
|
<!-- Persist token -->
|
||||||
<DockPanel
|
<DockPanel Margin="16,8" LastChildFill="False">
|
||||||
Margin="16,8"
|
<ToolTip.Tip>
|
||||||
LastChildFill="False"
|
<TextBlock
|
||||||
ToolTip.Tip="{Binding LocalizationManager.PersistTokenTooltip}">
|
MaxWidth="400"
|
||||||
|
Inlines="{Binding LocalizationManager.PersistTokenTooltip, Converter={x:Static converters:MarkdownToInlinesConverter.Instance}}"
|
||||||
|
TextWrapping="Wrap" />
|
||||||
|
</ToolTip.Tip>
|
||||||
<TextBlock DockPanel.Dock="Left" Text="{Binding LocalizationManager.PersistTokenLabel}" />
|
<TextBlock DockPanel.Dock="Left" Text="{Binding LocalizationManager.PersistTokenLabel}" />
|
||||||
<ToggleSwitch DockPanel.Dock="Right" IsChecked="{Binding IsTokenPersisted}" />
|
<ToggleSwitch DockPanel.Dock="Right" IsChecked="{Binding IsTokenPersisted}" />
|
||||||
</DockPanel>
|
</DockPanel>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue