Skip to content

Commit eac4754

Browse files
authored
Fix: App crash when double click on port profile (#3382)
* Fix: App crash when double click on port profile * Docs: #3382
1 parent 43bcfbf commit eac4754

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -257,3 +257,4 @@ Build/
257257
.vscode/
258258
*.exe
259259
*.dll
260+
ToDo.md

Source/NETworkManager/Views/PortProfilesChildWindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ private void ChildWindow_OnLoaded(object sender, RoutedEventArgs e)
3535

3636
private void DataGridRow_MouseDoubleClick(object sender, System.Windows.Input.MouseButtonEventArgs e)
3737
{
38-
var x = (SNMPOIDProfilesViewModel)DataContext;
38+
var x = (PortProfilesViewModel)DataContext;
3939

4040
if (x.OKCommand.CanExecute(null))
4141
x.OKCommand.Execute(null);

Website/docs/changelog/next-release.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
---
22
sidebar_position: 0
33
description: "Changelog for the next NETworkManager release — upcoming features, improvements, and bug fixes."
4-
keywords: [NETworkManager, changelog, release notes, next release, upcoming features, bug fixes]
4+
keywords:
5+
[
6+
NETworkManager,
7+
changelog,
8+
release notes,
9+
next release,
10+
upcoming features,
11+
bug fixes,
12+
]
513
---
614

715
# Next Release
@@ -31,10 +39,14 @@ Release date: **xx.xx.2025**
3139

3240
## Improvements
3341

34-
- Redesign Status Window to make it more compact [#3359](https://github.com/BornToBeRoot/NETworkManager/pull/3359)
42+
- Redesign Status Window to make it more compact. [#3359](https://github.com/BornToBeRoot/NETworkManager/pull/3359)
3543

3644
## Bug Fixes
3745

46+
**Port Scanner**
47+
48+
- Fixed an app crash when double-clicking a port profile. [#3382](https://github.com/BornToBeRoot/NETworkManager/pull/3382)
49+
3850
**PowerShell**
3951

4052
- Fixed incorrect initial embedded window size on high-DPI monitors. The `WindowsFormsHost` panel now sets its initial dimensions in physical pixels using the current DPI scale factor, ensuring the PowerShell window fills the panel correctly at startup. [#3352](https://github.com/BornToBeRoot/NETworkManager/pull/3352)

0 commit comments

Comments
 (0)