mirror of
https://github.com/Blinue/Magpie.git
synced 2026-06-24 02:04:10 +00:00
fix: 修复无法缩放全屏窗口
This commit is contained in:
parent
b167cd1d09
commit
6f0e5ea33d
2 changed files with 10 additions and 6 deletions
|
|
@ -197,7 +197,7 @@ bool GraphicsCaptureFrameSource::_CaptureWindow(IGraphicsCaptureItemInterop* int
|
|||
return false;
|
||||
}
|
||||
|
||||
if (_srcRect.left <= frameBounds.left || _srcRect.top <= frameBounds.top) {
|
||||
if (_srcRect.left < frameBounds.left || _srcRect.top < frameBounds.top) {
|
||||
Logger::Get().Error("裁剪边框错误");
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue