diff options
| author | Juan Linietsky <reduzio@gmail.com> | 2015-03-16 00:47:37 -0300 |
|---|---|---|
| committer | Juan Linietsky <reduzio@gmail.com> | 2015-03-16 01:14:59 -0300 |
| commit | 53e1694e1e2b76026d862e84c1de88f62601cbc3 (patch) | |
| tree | 545ef1e271b6df173d0626db887c87c4f6bdf4ba /platform | |
| parent | 5b54361daf933e33d4b1545f14e2cebbd04d93ff (diff) | |
New option to send canvas to render buffer
allows to use 3D environment effects for post processing such as Glow,
Bloom, HDR, etc. in 2D.
Diffstat (limited to 'platform')
| -rw-r--r-- | platform/windows/os_windows.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/platform/windows/os_windows.cpp b/platform/windows/os_windows.cpp index e392a56aa8..50c42448f4 100644 --- a/platform/windows/os_windows.cpp +++ b/platform/windows/os_windows.cpp @@ -1862,6 +1862,7 @@ String OS_Windows::get_stdin_string(bool p_block) { void OS_Windows::move_window_to_foreground() { SetForegroundWindow(hWnd); + BringWindowToTop(hWnd); } |