From b41ead1c419d72249c983bf4a51ce9dffae7ee11 Mon Sep 17 00:00:00 2001
From: Daniel Goerz <daniel.goerz@posteo.de>
Date: Thu, 26 Mar 2020 18:59:36 +0100
Subject: [PATCH] [TASK] Resize t3editor fields to former height

With https://review.typo3.org/c/Packages/TYPO3.CMS/+/63923/
the t3editor fields were fixed to respect the actual TCA
configuration for the fields. The leads to smaller input areas
at some places.

The TCA configuration of those fields is changed so that
the former size of the input area is preserved.

Resovles: #90845,
Releases: master, 9.5
Change-Id: I2ccb36ab991f697e2d740a4ceb2902d5da31b911
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/63936
Reviewed-by: Wouter Wolters <typo3@wouterwolters.nl>
Reviewed-by: Georg Ringer <georg.ringer@gmail.com>
Reviewed-by: Susanne Moog <look@susi.dev>
Tested-by: Georg Ringer <georg.ringer@gmail.com>
Tested-by: TYPO3com <noreply@typo3.com>
Tested-by: Susanne Moog <look@susi.dev>
---
 typo3/sysext/core/Configuration/TCA/pages.php            | 2 +-
 typo3/sysext/frontend/Configuration/TCA/sys_template.php | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/typo3/sysext/core/Configuration/TCA/pages.php b/typo3/sysext/core/Configuration/TCA/pages.php
index bebea76e4210..9498d7732cbe 100644
--- a/typo3/sysext/core/Configuration/TCA/pages.php
+++ b/typo3/sysext/core/Configuration/TCA/pages.php
@@ -175,7 +175,7 @@ return [
             'config' => [
                 'type' => 'text',
                 'cols' => 40,
-                'rows' => 5,
+                'rows' => 15,
                 'enableTabulator' => true,
                 'fixedFont' => true,
             ],
diff --git a/typo3/sysext/frontend/Configuration/TCA/sys_template.php b/typo3/sysext/frontend/Configuration/TCA/sys_template.php
index 695d5e5ef9fb..7f68b006074a 100644
--- a/typo3/sysext/frontend/Configuration/TCA/sys_template.php
+++ b/typo3/sysext/frontend/Configuration/TCA/sys_template.php
@@ -113,7 +113,7 @@ return [
             'config' => [
                 'type' => 'text',
                 'cols' => 48,
-                'rows' => 10,
+                'rows' => 15,
                 'wrap' => 'off',
                 'enableTabulator' => true,
                 'fixedFont' => true,
@@ -177,7 +177,7 @@ return [
             'label' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_tca.xlf:sys_template.config',
             'config' => [
                 'type' => 'text',
-                'rows' => 10,
+                'rows' => 15,
                 'cols' => 48,
                 'wrap' => 'off',
                 'enableTabulator' => true,
-- 
GitLab