mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
Issue #1503: increase default size of grid popup text editor
This commit is contained in:
@ -3474,8 +3474,8 @@ begin
|
||||
InitSetting(asCodeFolding, 'CodeFolding', 0, True);
|
||||
InitSetting(asDisplayBLOBsAsText, 'DisplayBLOBsAsText', 0, True);
|
||||
InitSetting(asSingleQueries, 'SingleQueries', 0, True);
|
||||
InitSetting(asMemoEditorWidth, 'MemoEditorWidth', 100);
|
||||
InitSetting(asMemoEditorHeight, 'MemoEditorHeight', 100);
|
||||
InitSetting(asMemoEditorWidth, 'MemoEditorWidth', 500);
|
||||
InitSetting(asMemoEditorHeight, 'MemoEditorHeight', 200);
|
||||
InitSetting(asMemoEditorMaximized, 'MemoEditorMaximized', 0, False);
|
||||
InitSetting(asMemoEditorWrap, 'MemoEditorWrap', 0, False);
|
||||
InitSetting(asMemoEditorHighlighter, 'MemoEditorHighlighter_%s', 0, False, 'General', True);
|
||||
|
@ -2,11 +2,11 @@ object frmTextEditor: TfrmTextEditor
|
||||
Left = 0
|
||||
Top = 0
|
||||
Caption = 'Text editor'
|
||||
ClientHeight = 104
|
||||
ClientWidth = 571
|
||||
ClientHeight = 161
|
||||
ClientWidth = 484
|
||||
Color = clBtnFace
|
||||
Constraints.MinHeight = 100
|
||||
Constraints.MinWidth = 130
|
||||
Constraints.MinHeight = 200
|
||||
Constraints.MinWidth = 500
|
||||
Font.Charset = DEFAULT_CHARSET
|
||||
Font.Color = clWindowText
|
||||
Font.Height = -12
|
||||
@ -23,8 +23,8 @@ object frmTextEditor: TfrmTextEditor
|
||||
object Panel1: TPanel
|
||||
AlignWithMargins = True
|
||||
Left = 0
|
||||
Top = 82
|
||||
Width = 561
|
||||
Top = 139
|
||||
Width = 474
|
||||
Height = 22
|
||||
Margins.Left = 0
|
||||
Margins.Top = 0
|
||||
@ -39,7 +39,7 @@ object frmTextEditor: TfrmTextEditor
|
||||
AlignWithMargins = True
|
||||
Left = 355
|
||||
Top = 3
|
||||
Width = 65
|
||||
Width = 76
|
||||
Height = 16
|
||||
Align = alLeft
|
||||
BiDiMode = bdLeftToRight
|
||||
@ -134,7 +134,7 @@ object frmTextEditor: TfrmTextEditor
|
||||
Left = 207
|
||||
Top = 0
|
||||
Width = 145
|
||||
Height = 21
|
||||
Height = 22
|
||||
Align = alLeft
|
||||
Style = csDropDownList
|
||||
Sorted = True
|
||||
@ -145,8 +145,8 @@ object frmTextEditor: TfrmTextEditor
|
||||
object MemoText: TSynMemo
|
||||
Left = 0
|
||||
Top = 0
|
||||
Width = 571
|
||||
Height = 82
|
||||
Width = 484
|
||||
Height = 139
|
||||
SingleLineMode = False
|
||||
Align = alClient
|
||||
Font.Charset = DEFAULT_CHARSET
|
||||
|
Reference in New Issue
Block a user