mirror of
https://github.com/element-hq/element-web
synced 2024-11-26 19:26:04 +03:00
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:
parent
7f6f984438
commit
b6b7511fd9
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue