Skip to content

Commit

Permalink
Test ZoomIt PR (#37809)
Browse files Browse the repository at this point in the history
* Test ZoomIt PR

* Test ZoomIt PR

* Test ZoomIt PR

* Test ZoomIt PR
  • Loading branch information
MarioHewardt authored Mar 7, 2025
1 parent fc94cd7 commit c38faa9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/modules/ZoomIt/ZoomIt/Zoomit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ namespace util
}

// This workaround keeps live zoom enabled after zooming out at level 1 (not zoomed) and disables
// live zoom when recording is stopped.
// live zoom when recording is stopped
#define WINDOWS_CURSOR_RECORDING_WORKAROUND 1

HINSTANCE g_hInstance;
Expand Down Expand Up @@ -320,10 +320,10 @@ void EnsureForeground()
//----------------------------------------------------------------------------
void RestoreForeground()
{
// If the main window is not visible, move foreground to the next window
// If the main window is not visible, move foreground to the next window.
if( !IsWindowVisible( g_hWndMain ) ) {

// Activate the next window by unhiding and hiding the main window
// Activate the next window by unhiding and hiding the main window.
MoveWindow( g_hWndMain, 0, 0, 0, 0, FALSE );
ShowWindow( g_hWndMain, SW_SHOWNA );
ShowWindow( g_hWndMain, SW_HIDE );
Expand Down Expand Up @@ -493,7 +493,7 @@ bool IsAutostartConfigured()
// RunningOnWin64
//
// Returns true if this is the 32-bit version of the executable
// and we're on 64-bit Windows
// and we're on 64-bit Windows.
//
//--------------------------------------------------------------------
typedef BOOL (__stdcall *P_IS_WOW64PROCESS)(
Expand Down Expand Up @@ -559,7 +559,7 @@ BOOLEAN ExtractImageResource( PTCHAR ResourceName, PTCHAR TargetFile )
// Run64bitVersion
//
// Returns true if this is the 32-bit version of the executable
// and we're on 64-bit Windows
// and we're on 64-bit Windows.
//
//--------------------------------------------------------------------
DWORD
Expand Down

0 comments on commit c38faa9

Please sign in to comment.