dev
Revision | efc1521590ae61cac0cac6546e4f4cb14347fbf5 (tree) |
---|---|
Time | 2013-04-07 16:29:04 |
Author | ANIKITI <anikiti07@gmai...> |
Commiter | ANIKITI |
C# への書き換え時のミスを修正
@@ -71,7 +71,7 @@ namespace OpenTween | ||
71 | 71 | { |
72 | 72 | // 実行中の同じアプリケーションのウィンドウ・ハンドルの取得 |
73 | 73 | var prevProcess = Win32Api.GetPreviousProcess(); |
74 | - if (prevProcess != null && prevProcess.MainWindowHandle == IntPtr.Zero) | |
74 | + if (prevProcess != null && prevProcess.MainWindowHandle != IntPtr.Zero) | |
75 | 75 | { |
76 | 76 | // 起動中のアプリケーションを最前面に表示 |
77 | 77 | Win32Api.WakeupWindow(prevProcess.MainWindowHandle); |