From 4fb719e204b828913f3bb6d17e357aa68af40287 Mon Sep 17 00:00:00 2001 From: Nils Landrodie Date: Mon, 9 Aug 2021 21:04:13 +0200 Subject: [PATCH] [ui] Update tableview to stop flicking at bounds Specify boundsMovement property to avoid overshooting with the flicks --- meshroom/ui/qml/ImageGallery/ImageGallery.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meshroom/ui/qml/ImageGallery/ImageGallery.qml b/meshroom/ui/qml/ImageGallery/ImageGallery.qml index c35540f2..1ad2ebe8 100644 --- a/meshroom/ui/qml/ImageGallery/ImageGallery.qml +++ b/meshroom/ui/qml/ImageGallery/ImageGallery.qml @@ -345,6 +345,8 @@ Panel { interactive : !focus + boundsMovement : Flickable.StopAtBounds + //Provide width for column //Note no size provided for the last column (bool comp) so it uses its automated size property var columnWidths: [90, 75, 75, 75, 125, 60, 60, 45, 45, 200, 60, 60]