Skip to content

Commit da4aca8

Browse files
committed
Merge branch 'main' into feature/firewall
2 parents 9146e0b + 782a36c commit da4aca8

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

Source/NETworkManager/ViewModels/SettingsWindowViewModel.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public bool ConfirmClose
5151
if (!_isLoading)
5252
SettingsManager.Current.Window_ConfirmClose = value;
5353

54-
_confirmClose = value;
54+
field = value;
5555
OnPropertyChanged();
5656
}
5757
}
@@ -67,7 +67,7 @@ public bool MultipleInstances
6767
if (!_isLoading)
6868
SettingsManager.Current.Window_MultipleInstances = value;
6969

70-
_multipleInstances = value;
70+
field = value;
7171
OnPropertyChanged();
7272
}
7373
}

Source/NETworkManager/Views/NetworkInterfaceView.xaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<converters:IPAddressSubnetmaskTupleArrayToStringConverter
3737
x:Key="IPAddressSubnetmaskTupleArrayToStringConverter" />
3838
<converters:IntNotZeroToVisibilityCollapsedConverter x:Key="IntNotZeroToVisibilityCollapsedConverter" />
39-
<converters:IntZeroToVisibilityCollapsedConverter x:Key="IntZeroToVisibilityCollapsedConverter" />
39+
<converters:IntZeroToVisibilityCollapsedConverter x:Key="IntZeroToVisibilityCollapsedConverter" />
4040
<converters:OperationalStatusToStringConverter x:Key="OperationalStatusToStringConverter" />
4141
<converters:PhysicalAddressToStringConverter x:Key="PhysicalAddressToStringConverter" />
4242
<converters:ValidateNetworkInterfaceConfigConverter x:Key="ValidateNetworkInterfaceConfigConverter" />
@@ -1150,7 +1150,7 @@
11501150
<TextBlock Grid.Column="1" VerticalAlignment="Center"
11511151
Style="{StaticResource DefaultTextBlock}"
11521152
Text="{Binding Path=CIDR,StringFormat=/{0}}"
1153-
Foreground="{StaticResource MahApps.Brushes.Gray2}" />
1153+
Foreground="{DynamicResource MahApps.Brushes.Gray2}" />
11541154
</Grid>
11551155
</DataTemplate>
11561156
</ComboBox.ItemTemplate>
@@ -1472,7 +1472,8 @@
14721472
</Rectangle.Style>
14731473
</Rectangle>
14741474
</Button>
1475-
<Popup Grid.Column="0" PlacementTarget="{Binding ElementName=ButtonProfileFilter}"
1475+
<Popup Grid.Column="0" Grid.Row="0"
1476+
PlacementTarget="{Binding ElementName=ButtonProfileFilter}"
14761477
Placement="Bottom" StaysOpen="False"
14771478
IsOpen="{Binding ProfileFilterIsOpen}"
14781479
Width="220">

0 commit comments

Comments
 (0)