From 15826cec5d718361cc639ddca0dcc8896470fed7 Mon Sep 17 00:00:00 2001 From: Matthew Chen Date: Wed, 12 Dec 2018 12:07:30 -0500 Subject: [PATCH] Reduce initial conversation load window size. --- .../ViewControllers/ConversationView/ConversationViewModel.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Signal/src/ViewControllers/ConversationView/ConversationViewModel.m b/Signal/src/ViewControllers/ConversationView/ConversationViewModel.m index 3586f93ed..17ccc9c4f 100644 --- a/Signal/src/ViewControllers/ConversationView/ConversationViewModel.m +++ b/Signal/src/ViewControllers/ConversationView/ConversationViewModel.m @@ -101,7 +101,7 @@ NS_ASSUME_NONNULL_BEGIN // // PERF: we could do less messages on shorter (older, slower) devices // PERF: we could cache the cell height, since some messages will be much taller. -static const int kYapDatabasePageSize = 25; +static const int kYapDatabasePageSize = 18; // Never show more than n messages in conversation view when user arrives. static const int kConversationInitialMaxRangeSize = 300;