Hi, I just had the same issue – all thumbnails were pointing to the respective “large” version of the image (e.g. 1024xYYY), instead of full size.
I managed to solve it by editing the Plugin responsive-gallery-grid/gallerygrid.php
file on line 143:
change:
$info = wp_get_attachment_image_src( $mid, 'large' );
to
$info = wp_get_attachment_image_src( $mid, 'full' );