mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2026-02-14 07:43:31 -07:00
Disable "Reuse assets" and "Assets path" options in GUI export setup if "Download assets" is disabled
This commit is contained in:
parent
b709fc0f15
commit
50b26c557f
|
|
@ -271,7 +271,10 @@
|
|||
</Grid>
|
||||
|
||||
<!-- Reuse assets -->
|
||||
<Grid Margin="16,8" ToolTip="Reuse previously downloaded assets to avoid redundant requests">
|
||||
<Grid
|
||||
Margin="16,8"
|
||||
IsEnabled="{Binding ShouldDownloadAssets}"
|
||||
ToolTip="Reuse previously downloaded assets to avoid redundant requests">
|
||||
<Grid.ColumnDefinitions>
|
||||
<ColumnDefinition Width="*" />
|
||||
<ColumnDefinition Width="Auto" />
|
||||
|
|
@ -289,7 +292,7 @@
|
|||
</Grid>
|
||||
|
||||
<!-- Assets path -->
|
||||
<Grid Margin="16,8">
|
||||
<Grid Margin="16,8" IsEnabled="{Binding ShouldDownloadAssets}">
|
||||
<TextBox
|
||||
Padding="16,16,42,16"
|
||||
materialDesign:HintAssist.Hint="Assets directory path"
|
||||
|
|
|
|||
Loading…
Reference in a new issue