sdl2_frt/src/video
Sam Lantinga 976c876924 Fixed bug 2172 - Window loses maximized state when activated
I still haven't figured out why my application is being minimized when I try to raise, it but my previous workaround is causing issues.

For now the correct way to raise and/or restore the window is as follows:

	if ( !(SDL_GetWindowFlags( window ) & SDL_WINDOW_MINIMIZED) )
	{
		SDL_RaiseWindow( window );
	}
	if ( SDL_GetWindowFlags( window ) & SDL_WINDOW_MINIMIZED )
	{
		SDL_RestoreWindow( window );
	}

I will investigate the window state change rules more fully in the future.

CR: Alfred Reynolds
2013-11-08 14:05:23 -08:00
..
android [Android] Fixes Bug 2041 - can't get SDL_QUIT event... 2013-11-06 11:23:24 -03:00
bwindow Fixed bug 2129 - fix for bug 2121 breaks linking for mingw and throws multiple warnings 2013-10-20 21:56:15 -07:00
cocoa Mac: Fix a crash with SDL_MAC_NO_SANDBOX. 2013-11-08 14:05:08 -08:00
directfb Fixed bug 2129 - fix for bug 2121 breaks linking for mingw and throws multiple warnings 2013-10-20 21:56:15 -07:00
dummy Christoph Mallon: Remove pointless if (x) before SDL_FreeSurface(x) 2013-08-29 08:29:51 -07:00
pandora Fixes #2022, do not resume on Android when surfaceChanged 2013-08-12 11:13:50 -03:00
psp OCD fixes: Adds a space after /* (glory to regular expressions!) 2013-08-21 09:47:10 -03:00
raspberry Backed out changeset 737771c47c6f, done testing Buildbot changes. 2013-10-20 20:24:00 -04:00
uikit Fixed the status bar visibility in iOS 7 2013-10-20 23:05:53 -07:00
windows Fixed bug 2172 - Window loses maximized state when activated 2013-11-08 14:05:23 -08:00
x11 Fixed spot where SDL was assuming that two displays having the same origin means they're the same display. Changed it to check for the same extents instead. 2013-11-08 14:04:35 -08:00
SDL_blit_0.c Fixes #2022, do not resume on Android when surfaceChanged 2013-08-12 11:13:50 -03:00
SDL_blit_1.c Fixes #2022, do not resume on Android when surfaceChanged 2013-08-12 11:13:50 -03:00
SDL_blit_A.c Removed unused variables (thanks Joseph!) 2013-10-06 13:50:36 -07:00
SDL_blit_auto.c Fixes #2022, do not resume on Android when surfaceChanged 2013-08-12 11:13:50 -03:00
SDL_blit_auto.h Fixes #2022, do not resume on Android when surfaceChanged 2013-08-12 11:13:50 -03:00
SDL_blit_copy.c Fixed bug 2129 - fix for bug 2121 breaks linking for mingw and throws multiple warnings 2013-10-20 21:56:15 -07:00
SDL_blit_copy.h Fixes #2022, do not resume on Android when surfaceChanged 2013-08-12 11:13:50 -03:00
SDL_blit_N.c Fixes #2022, do not resume on Android when surfaceChanged 2013-08-12 11:13:50 -03:00
SDL_blit_slow.c Fixes #2022, do not resume on Android when surfaceChanged 2013-08-12 11:13:50 -03:00
SDL_blit_slow.h Fixes #2022, do not resume on Android when surfaceChanged 2013-08-12 11:13:50 -03:00
SDL_blit.c Fixes #2022, do not resume on Android when surfaceChanged 2013-08-12 11:13:50 -03:00
SDL_blit.h Fixes #2022, do not resume on Android when surfaceChanged 2013-08-12 11:13:50 -03:00
SDL_bmp.c Fixed bug 2219 - BMP loader do not handle big BITMAPINFOHEADER structure 2013-11-07 19:15:58 -08:00
SDL_clipboard.c Christoph Mallon: Replace strlen(x) == 0 (O(n)) by x[0] == '\0' (O(1)). 2013-08-29 08:30:21 -07:00
SDL_egl.c Fixes Bug #2191,incorrect test for egl_context validity 2013-10-31 10:02:21 -03:00
SDL_egl.h Fixes bug #2037, common EGL code for Android and X11 2013-08-19 16:29:46 -03:00
SDL_fillrect.c Fix a couple of warnings 2013-08-21 10:34:32 -03:00
SDL_pixels_c.h Fixes #2022, do not resume on Android when surfaceChanged 2013-08-12 11:13:50 -03:00
SDL_pixels.c Christoph Mallon: Remove pointless if (x) before SDL_free(x) 2013-08-29 08:29:21 -07:00
SDL_rect_c.h Fixes #2022, do not resume on Android when surfaceChanged 2013-08-12 11:13:50 -03:00
SDL_rect.c Fixed bug 2012 - Algorithm logic getting wrong in ComputeOutCode 2013-10-21 00:25:43 -07:00
SDL_RLEaccel_c.h Fixes #2022, do not resume on Android when surfaceChanged 2013-08-12 11:13:50 -03:00
SDL_RLEaccel.c Christoph Mallon: Remove pointless if (x) before SDL_free(x) 2013-08-29 08:29:21 -07:00
SDL_shape_internals.h Fixes #2022, do not resume on Android when surfaceChanged 2013-08-12 11:13:50 -03:00
SDL_shape.c OCD fixes: Adds a space after /* (glory to regular expressions!) 2013-08-21 09:47:10 -03:00
SDL_stretch.c OCD fixes: Adds a space after /* (glory to regular expressions!) 2013-08-21 09:47:10 -03:00
SDL_surface.c Fixed bug 2129 - fix for bug 2121 breaks linking for mingw and throws multiple warnings 2013-10-20 21:56:15 -07:00
SDL_sysvideo.h Added SDL_GL_FRAMEBUFFER_SRGB_CAPABLE (thanks, David!). 2013-10-20 21:18:05 -04:00
SDL_video.c Better cleanup if OpenGL initialization fails 2013-10-21 00:15:24 -07:00
sdlgenblit.pl Fixes #2022, do not resume on Android when surfaceChanged 2013-08-12 11:13:50 -03:00