From d043641ae26bbbe51c0c51b0136e3c9f51c85402 Mon Sep 17 00:00:00 2001 From: Robert Mikhayelyan Date: Tue, 25 Jun 2019 20:43:42 -0700 Subject: [PATCH] simple fix (#4) --- Win32CaptureSample/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Win32CaptureSample/main.cpp b/Win32CaptureSample/main.cpp index 1776c6c..59508f1 100644 --- a/Win32CaptureSample/main.cpp +++ b/Win32CaptureSample/main.cpp @@ -36,6 +36,8 @@ int __stdcall WinMain( auto compositor = Compositor(); auto root = compositor.CreateContainerVisual(); root.RelativeSizeAdjustment({ 1.0f, 1.0f }); + root.Size({ -220.0f, 0.0f }); + root.Offset({ 220.0f, 0.0f, 0.0f }); // Create the picker auto picker = GraphicsCapturePicker();