diff --git a/wp-admin/includes/nav-menu.php b/wp-admin/includes/nav-menu.php
index 0dbcb0c..4cf8811 100644
--- a/wp-admin/includes/nav-menu.php
+++ b/wp-admin/includes/nav-menu.php
@@ -621,7 +621,7 @@ function wp_nav_menu_item_post_type_meta_box( $object, $post_type ) {
 
 	// @todo transient caching of these results with proper invalidation on updating of a post of this type
 	$get_posts = new WP_Query;
-	$posts = $get_posts->query( $args );
+	$posts = $get_posts->query( array_merge( $args, array( 'nopaging' => true ) ) );
 	if ( ! $get_posts->post_count ) {
 		echo '<p>' . __( 'No items.' ) . '</p>';
 		return;
