mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-26 11:17:57 +08:00
Get rid of secondary, confusing checkbox in preferences window for limiting data rows.
This commit is contained in:
@ -440,21 +440,21 @@ object optionsform: Toptionsform
|
||||
ImageIndex = 4
|
||||
object Label19: TLabel
|
||||
Left = 8
|
||||
Top = 68
|
||||
Top = 44
|
||||
Width = 177
|
||||
Height = 13
|
||||
Caption = 'Maximum column-width in data-grids:'
|
||||
end
|
||||
object GroupBox2: TGroupBox
|
||||
Left = 0
|
||||
Top = 120
|
||||
Top = 80
|
||||
Width = 403
|
||||
Height = 113
|
||||
Height = 153
|
||||
Align = alBottom
|
||||
Caption =
|
||||
'Change this font in order to view special language characters in' +
|
||||
' data-grids:'
|
||||
TabOrder = 4
|
||||
TabOrder = 3
|
||||
object Label21: TLabel
|
||||
Left = 20
|
||||
Top = 24
|
||||
@ -521,36 +521,25 @@ object optionsform: Toptionsform
|
||||
TabOrder = 3
|
||||
end
|
||||
end
|
||||
object CheckBoxlimit: TCheckBox
|
||||
Left = 8
|
||||
Top = 40
|
||||
Width = 397
|
||||
Height = 17
|
||||
Anchors = [akLeft, akTop, akRight]
|
||||
Caption = 'Automatically calculate data limit to avoid huge net loads'
|
||||
Checked = True
|
||||
State = cbChecked
|
||||
TabOrder = 1
|
||||
end
|
||||
object editDefaultColWidth: TEdit
|
||||
Left = 188
|
||||
Top = 65
|
||||
Top = 41
|
||||
Width = 42
|
||||
Height = 21
|
||||
TabOrder = 2
|
||||
TabOrder = 1
|
||||
Text = '1'
|
||||
OnChange = Modified
|
||||
end
|
||||
object updownDefaultColWidth: TUpDown
|
||||
Left = 230
|
||||
Top = 65
|
||||
Top = 41
|
||||
Width = 16
|
||||
Height = 21
|
||||
Associate = editDefaultColWidth
|
||||
Min = 1
|
||||
Max = 1000
|
||||
Position = 1
|
||||
TabOrder = 3
|
||||
TabOrder = 2
|
||||
OnChanging = anyUpDownLimitChanging
|
||||
end
|
||||
object chkRememberFilters: TCheckBox
|
||||
|
@ -70,7 +70,6 @@ type
|
||||
Label22: TLabel;
|
||||
EditFontSize: TEdit;
|
||||
UpDownFontSize: TUpDown;
|
||||
CheckBoxlimit: TCheckBox;
|
||||
Label19: TLabel;
|
||||
Label28: TLabel;
|
||||
pnlTablenames: TPanel;
|
||||
@ -176,7 +175,6 @@ begin
|
||||
reg.WriteString(REGNAME_CSV_ENCLOSER, Edit2.Text);
|
||||
reg.WriteString(REGNAME_CSV_TERMINATOR, Edit3.Text);
|
||||
reg.WriteInteger(REGNAME_DEFAULTCOLWIDTH, updownDefaultColWidth.Position);
|
||||
reg.WriteBool(REGNAME_DATALIMIT, CheckBoxLimit.Checked);
|
||||
reg.WriteString(REGNAME_DATAFONTNAME, Panel8.Font.Name);
|
||||
reg.WriteInteger(REGNAME_DATAFONTSIZE, UpDownDataFontSize.Position);
|
||||
reg.WriteBool(REGNAME_REMEMBERFILTERS, chkRememberFilters.Checked);
|
||||
@ -266,7 +264,6 @@ begin
|
||||
CheckBoxAutoReconnect.Checked := Mainform.GetRegValue(REGNAME_AUTORECONNECT, DEFAULT_AUTORECONNECT);
|
||||
CheckBoxConvertHTMLEntities.Checked := Mainform.GetRegValue(REGNAME_CONVERTHTMLENTITIES, DEFAULT_CONVERTHTMLENTITIES);
|
||||
CheckBoxRestoreLastUsedDB.Checked := Mainform.GetRegValue(REGNAME_RESTORELASTUSEDDB, DEFAULT_RESTORELASTUSEDDB);
|
||||
CheckBoxLimit.Checked := Mainform.GetRegValue(REGNAME_DATALIMIT, DEFAULT_DATALIMIT);
|
||||
updownLogSQLNum.Position := Mainform.GetRegValue(REGNAME_LOGSQLNUM, DEFAULT_LOGSQLNUM);
|
||||
updownLogSnip.Position := Mainform.GetRegValue(REGNAME_LOGSQLWIDTH, DEFAULT_LOGSQLWIDTH);
|
||||
chkUpdatecheck.Checked := Mainform.GetRegValue(REGNAME_DO_UPDATECHECK, DEFAULT_DO_UPDATECHECK);
|
||||
|
Reference in New Issue
Block a user