Skip to content

Instantly share code, notes, and snippets.

@Akira-Hayasaka
Last active December 15, 2017 05:21
Show Gist options
  • Save Akira-Hayasaka/e814d72bf6fe5e8f1c82 to your computer and use it in GitHub Desktop.
Save Akira-Hayasaka/e814d72bf6fe5e8f1c82 to your computer and use it in GitHub Desktop.
win always on top window
void ofApp::update()
{
// window always on top
HWND AppWindow = GetActiveWindow();
SetFocus(AppWindow);
SetForegroundWindow(AppWindow);
SetActiveWindow(AppWindow);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment