File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -258,7 +258,10 @@ protected override async void OnNavigatedTo(NavigationEventArgs eventArgs)
258
258
App . CurrentInstance . InstanceViewModel . IsPageTypeRecycleBin = workingDir . StartsWith ( App . AppSettings . RecycleBinPath ) ;
259
259
App . CurrentInstance . InstanceViewModel . IsPageTypeMtpDevice = workingDir . StartsWith ( "\\ \\ ?\\ " ) ;
260
260
261
- await App . MultitaskingControl ? . SetSelectedTabInfo ( new DirectoryInfo ( workingDir ) . Name , workingDir ) ;
261
+ if ( App . MultitaskingControl != null )
262
+ {
263
+ await App . MultitaskingControl . SetSelectedTabInfo ( new DirectoryInfo ( workingDir ) . Name , workingDir ) ;
264
+ }
262
265
App . CurrentInstance . FilesystemViewModel . RefreshItems ( ) ;
263
266
264
267
App . MultitaskingControl ? . SelectionChanged ( ) ;
Original file line number Diff line number Diff line change 35
35
x : Name =" AdaptiveMultToggle"
36
36
x : Uid =" SettingsMultitaskingAdaptive"
37
37
Content =" Adaptive (Recommended)"
38
- IsChecked =" {x:Bind AppSettings.IsMultitaskingExperienceAdaptive, Mode=TwoWay}" />
38
+ GroupName =" MultitaskingSettingRadioGroup"
39
+ IsChecked =" {x:Bind AppSettings.IsMultitaskingExperienceAdaptive, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />
39
40
<TextBlock
40
41
x : Uid =" SettingsMultitaskingAdaptiveDescription"
41
42
MaxWidth =" 450"
49
50
x : Uid =" SettingsMultitaskingHorizontal"
50
51
Margin =" 0,18,0,0"
51
52
Content =" Horizontal"
52
- IsChecked =" {x:Bind AppSettings.IsHorizontalTabStripEnabled, Mode=TwoWay}" />
53
+ GroupName =" MultitaskingSettingRadioGroup"
54
+ IsChecked =" {x:Bind AppSettings.IsHorizontalTabStripEnabled, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />
53
55
<TextBlock
54
56
x : Uid =" SettingsMultitaskingHorizontalDescription"
55
57
MaxWidth =" 450"
63
65
x : Uid =" SettingsMultitaskingVertical"
64
66
Margin =" 0,18,0,0"
65
67
Content =" Vertical"
66
- IsChecked =" {x:Bind AppSettings.IsVerticalTabFlyoutEnabled, Mode=TwoWay}" />
68
+ GroupName =" MultitaskingSettingRadioGroup"
69
+ IsChecked =" {x:Bind AppSettings.IsVerticalTabFlyoutEnabled, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" />
67
70
<TextBlock
68
71
x : Uid =" SettingsMultitaskingVerticalDescription"
69
72
MaxWidth =" 450"
You can’t perform that action at this time.
0 commit comments