Skip to content

Commit fcd96fd

Browse files
authored
Fixed DynamicDialog background and fixed an issue when creating a Bundle (#3286)
1 parent 658ca30 commit fcd96fd

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

Files/Dialogs/DynamicDialog.xaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
xmlns:i="using:Microsoft.Xaml.Interactivity"
77
xmlns:icore="using:Microsoft.Xaml.Interactions.Core"
88
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
9+
xmlns:helpers="using:Files.Helpers"
910
Title="{Binding TitleText, Mode=OneWay}"
11+
RequestedTheme="{x:Bind helpers:ThemeHelper.RootTheme}"
1012
CloseButtonStyle="{StaticResource DefaultButtonStyle}"
1113
CloseButtonText="{Binding CloseButtonText, Mode=OneWay}"
1214
CornerRadius="4"

Files/UserControls/Widgets/Bundles.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -446,7 +446,7 @@
446446
HorizontalAlignment="Stretch"
447447
VerticalAlignment="Center"
448448
PlaceholderText="Enter Bundle name"
449-
Text="{Binding BundleNameTextInput, Mode=TwoWay}">
449+
Text="{Binding BundleNameTextInput, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}">
450450
<i:Interaction.Behaviors>
451451
<!-- No need to specify CommandParameter - `e` is passed by default -->
452452
<icore:EventTriggerBehavior EventName="KeyDown">

Files/ViewModels/Bundles/BundlesViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -374,4 +374,4 @@ public void Dispose()
374374

375375
#endregion IDisposable
376376
}
377-
}
377+
}

0 commit comments

Comments
 (0)