mirror of
				https://github.com/Drezil/imgui.git
				synced 2025-11-04 07:01:04 +01:00 
			
		
		
		
	Examples: Win32: Removed unused code left-over from merge e9c625a1dc
				
					
				
			This commit is contained in:
		@@ -197,14 +197,6 @@ static void ImGui_ImplWin32_UpdateMousePos()
 | 
			
		||||
        if (ImGuiViewport* viewport = ImGui::FindViewportByPlatformHandle((void*)hovered_hwnd))
 | 
			
		||||
            if ((viewport->Flags & ImGuiViewportFlags_NoInputs) == 0) // FIXME: We still get our NoInputs window with WM_NCHITTEST/HTTRANSPARENT code when decorated?
 | 
			
		||||
                io.MouseHoveredViewport = viewport->ID;
 | 
			
		||||
 | 
			
		||||
#if 0
 | 
			
		||||
    POINT pos;
 | 
			
		||||
    if (HWND active_window = ::GetForegroundWindow())
 | 
			
		||||
        if (active_window == g_hWnd || ::IsChild(active_window, g_hWnd))
 | 
			
		||||
            if (::GetCursorPos(&pos) && ::ScreenToClient(g_hWnd, &pos))
 | 
			
		||||
                io.MousePos = ImVec2((float)pos.x, (float)pos.y);
 | 
			
		||||
#endif
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
#ifdef _MSC_VER
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user