Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Restore 'large' thumbnails to be 800x600 #7172

Merged
merged 1 commit into from
Nov 21, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/settings/enums/ImageSize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down