Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"sdk": {
"version": "10.0.103",
"allowPrerelease": true,
"rollForward": "latestFeature",
"rollForward": "latestPatch",
"paths": [
".dotnet",
"$host$"
Expand Down Expand Up @@ -30,4 +30,4 @@
"native-tools": {
"cmake": "latest"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<WtgPackageVersionPrefix>0.1.0</WtgPackageVersionPrefix>
<PackageVersion Condition="'$(PackageVersion)' == ''">$(WtgPackageVersionPrefix)-dev</PackageVersion>
<PackageDescription>WiseTech Global forked version of System.Windows.Forms that includes controls that were deprecated in .NET Core 3.1 and .NET 5, like DataGrid, Menu, ToolBar and StatusBar.</PackageDescription>
<PackageReleaseNotes>Fix the ToolStrip issue, PR link: https://github.com/WiseTechGlobal/winforms/pull/39</PackageReleaseNotes>
<PackageReleaseNotes>Fix the PictureBox issue, PR link: https://github.com/WiseTechGlobal/winforms/pull/40</PackageReleaseNotes>
<Authors>WiseTech Global</Authors>
<Copyright>© WiseTech Global Limited. All rights reserved.</Copyright>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1050,7 +1050,7 @@ private void OnFrameChanged(object? o, EventArgs e)
}

// Handle should be created, before calling the BeginInvoke.
if (InvokeRequired && IsHandleCreated)
if (IsHandleCreated && InvokeRequired)
{
lock (_internalSyncObject)
{
Expand Down
Loading