1
Window / CTRL ALT DEL doesn't minimize full screen window
« on: April 17, 2015, 05:11:22 am »
Hi,
I'm using SFML, setting up my game in full screen mode with:
but it doesn't minimize the game when I hit CTRL ALT DEL and start the Task Manager. However, the behavior I expect is the window to be minimized if I start the Task Manager. How can I achieve this?
Thanks!
I'm using SFML, setting up my game in full screen mode with:
//find computer's best resolution
RECT desktop;
const HWND hDesktop = GetDesktopWindow();
// Get the size of screen to the variable desktop
GetWindowRect(hDesktop, &desktop);
window = new sf::RenderWindow(sf::VideoMode(desktop.right, desktop.bottom), title, sf::Style::Fullscreen);
RECT desktop;
const HWND hDesktop = GetDesktopWindow();
// Get the size of screen to the variable desktop
GetWindowRect(hDesktop, &desktop);
window = new sf::RenderWindow(sf::VideoMode(desktop.right, desktop.bottom), title, sf::Style::Fullscreen);
but it doesn't minimize the game when I hit CTRL ALT DEL and start the Task Manager. However, the behavior I expect is the window to be minimized if I start the Task Manager. How can I achieve this?
Thanks!