Issue #1503: increase default size of grid popup text editor

This commit is contained in:
Ansgar Becker
2021-12-29 10:00:32 +01:00
parent aab0f244e2
commit 91be0fcc0a
2 changed files with 12 additions and 12 deletions

View File

@ -3474,8 +3474,8 @@ begin
InitSetting(asCodeFolding, 'CodeFolding', 0, True); InitSetting(asCodeFolding, 'CodeFolding', 0, True);
InitSetting(asDisplayBLOBsAsText, 'DisplayBLOBsAsText', 0, True); InitSetting(asDisplayBLOBsAsText, 'DisplayBLOBsAsText', 0, True);
InitSetting(asSingleQueries, 'SingleQueries', 0, True); InitSetting(asSingleQueries, 'SingleQueries', 0, True);
InitSetting(asMemoEditorWidth, 'MemoEditorWidth', 100); InitSetting(asMemoEditorWidth, 'MemoEditorWidth', 500);
InitSetting(asMemoEditorHeight, 'MemoEditorHeight', 100); InitSetting(asMemoEditorHeight, 'MemoEditorHeight', 200);
InitSetting(asMemoEditorMaximized, 'MemoEditorMaximized', 0, False); InitSetting(asMemoEditorMaximized, 'MemoEditorMaximized', 0, False);
InitSetting(asMemoEditorWrap, 'MemoEditorWrap', 0, False); InitSetting(asMemoEditorWrap, 'MemoEditorWrap', 0, False);
InitSetting(asMemoEditorHighlighter, 'MemoEditorHighlighter_%s', 0, False, 'General', True); InitSetting(asMemoEditorHighlighter, 'MemoEditorHighlighter_%s', 0, False, 'General', True);

View File

@ -2,11 +2,11 @@ object frmTextEditor: TfrmTextEditor
Left = 0 Left = 0
Top = 0 Top = 0
Caption = 'Text editor' Caption = 'Text editor'
ClientHeight = 104 ClientHeight = 161
ClientWidth = 571 ClientWidth = 484
Color = clBtnFace Color = clBtnFace
Constraints.MinHeight = 100 Constraints.MinHeight = 200
Constraints.MinWidth = 130 Constraints.MinWidth = 500
Font.Charset = DEFAULT_CHARSET Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText Font.Color = clWindowText
Font.Height = -12 Font.Height = -12
@ -23,8 +23,8 @@ object frmTextEditor: TfrmTextEditor
object Panel1: TPanel object Panel1: TPanel
AlignWithMargins = True AlignWithMargins = True
Left = 0 Left = 0
Top = 82 Top = 139
Width = 561 Width = 474
Height = 22 Height = 22
Margins.Left = 0 Margins.Left = 0
Margins.Top = 0 Margins.Top = 0
@ -39,7 +39,7 @@ object frmTextEditor: TfrmTextEditor
AlignWithMargins = True AlignWithMargins = True
Left = 355 Left = 355
Top = 3 Top = 3
Width = 65 Width = 76
Height = 16 Height = 16
Align = alLeft Align = alLeft
BiDiMode = bdLeftToRight BiDiMode = bdLeftToRight
@ -134,7 +134,7 @@ object frmTextEditor: TfrmTextEditor
Left = 207 Left = 207
Top = 0 Top = 0
Width = 145 Width = 145
Height = 21 Height = 22
Align = alLeft Align = alLeft
Style = csDropDownList Style = csDropDownList
Sorted = True Sorted = True
@ -145,8 +145,8 @@ object frmTextEditor: TfrmTextEditor
object MemoText: TSynMemo object MemoText: TSynMemo
Left = 0 Left = 0
Top = 0 Top = 0
Width = 571 Width = 484
Height = 82 Height = 139
SingleLineMode = False SingleLineMode = False
Align = alClient Align = alClient
Font.Charset = DEFAULT_CHARSET Font.Charset = DEFAULT_CHARSET