Restore 'large' thumbnails to be 800x600 (#7172)

In order to restore the original behaviour for those who want it, redefine "large" thumbnails to be fit within 800x600px.
This means that timeline screenshots end up typically not being downscaled (which is important given screenshots are our easiest way of copying chunks of history between rooms currently :/).  It also means that photos end up nice and big, which was a deliberate aesthetic choice for the app in the past, which some users will want to retain.
This commit is contained in:
Matthew Hodgson 2021-11-21 14:16:12 +00:00 committed by GitHub
parent 7f6f984438
commit b6b7511fd9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
const SIZE_LARGE = { w: 480, h: 360 };
const SIZE_LARGE = { w: 800, h: 600 };
const SIZE_NORMAL = { w: 324, h: 220 };
export enum ImageSize {