diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-01-11 17:37:19 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-01-11 17:37:19 +0100 |
commit | 3dcf9059ae375f0cbee472d9dbc2f15aaa27e216 (patch) | |
tree | e6b3a458b17ab9e54378c2e4d5dd95b3c55e29b5 /modules/mono/editor/GodotTools/GodotTools.OpenVisualStudio/Program.cs | |
parent | a86a2853237a2a03fab173287cc9f618a4f4d374 (diff) | |
parent | 7a0639055206d342ad068704cd35c66651bd07c5 (diff) | |
download | redot-engine-3dcf9059ae375f0cbee472d9dbc2f15aaa27e216.tar.gz |
Merge pull request #86454 from Repiteo/c#-upgrade-TFMs
C#: Upgrade TFM for `net472` and some `netstandard2.0` projects
Diffstat (limited to 'modules/mono/editor/GodotTools/GodotTools.OpenVisualStudio/Program.cs')
-rw-r--r-- | modules/mono/editor/GodotTools/GodotTools.OpenVisualStudio/Program.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/mono/editor/GodotTools/GodotTools.OpenVisualStudio/Program.cs b/modules/mono/editor/GodotTools/GodotTools.OpenVisualStudio/Program.cs index cc0deb6cc0..8e8eaa79b8 100644 --- a/modules/mono/editor/GodotTools/GodotTools.OpenVisualStudio/Program.cs +++ b/modules/mono/editor/GodotTools/GodotTools.OpenVisualStudio/Program.cs @@ -129,7 +129,7 @@ namespace GodotTools.OpenVisualStudio { var mainWindow = dte.MainWindow; mainWindow.Activate(); - SetForegroundWindow(new IntPtr(mainWindow.HWnd)); + SetForegroundWindow(mainWindow.HWnd); MessageFilter.Revoke(); } |