diff --git a/flutter/lib/desktop/pages/remote_page.dart b/flutter/lib/desktop/pages/remote_page.dart index 59c744099..ab8e55798 100644 --- a/flutter/lib/desktop/pages/remote_page.dart +++ b/flutter/lib/desktop/pages/remote_page.dart @@ -541,8 +541,8 @@ class _ImagePaintState extends State { imageWidget = Stack( children: [ Positioned( - left: c.x, - top: c.y, + left: c.x.toInt().toDouble(), + top: c.y.toInt().toDouble(), width: c.getDisplayWidth() * s, height: c.getDisplayHeight() * s, child: Texture(textureId: widget.textureId.value),