mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
Again, try to fix the high DPI issue on the text file import dialog. This time by moving the button toolbar below the "Columns" label. Closes #328.
This commit is contained in:
@ -346,46 +346,50 @@ object loaddataform: Tloaddataform
|
|||||||
Left = 112
|
Left = 112
|
||||||
Top = 72
|
Top = 72
|
||||||
Width = 153
|
Width = 153
|
||||||
Height = 107
|
Height = 129
|
||||||
Anchors = [akLeft, akTop, akRight, akBottom]
|
Anchors = [akLeft, akTop, akRight, akBottom]
|
||||||
ItemHeight = 13
|
ItemHeight = 13
|
||||||
TabOrder = 2
|
TabOrder = 2
|
||||||
OnClick = chklistColumnsClick
|
OnClick = chklistColumnsClick
|
||||||
end
|
end
|
||||||
object ToolBarColMove: TToolBar
|
object ToolBarColMove: TToolBar
|
||||||
Left = 112
|
Left = 10
|
||||||
Top = 185
|
Top = 91
|
||||||
Width = 69
|
Width = 58
|
||||||
Height = 22
|
Height = 66
|
||||||
Align = alNone
|
Align = alNone
|
||||||
Anchors = [akLeft, akBottom]
|
|
||||||
AutoSize = True
|
AutoSize = True
|
||||||
|
ButtonWidth = 58
|
||||||
Caption = 'ToolBarColMove'
|
Caption = 'ToolBarColMove'
|
||||||
Images = MainForm.ImageListMain
|
Images = MainForm.ImageListMain
|
||||||
|
List = True
|
||||||
ParentShowHint = False
|
ParentShowHint = False
|
||||||
|
ShowCaptions = True
|
||||||
ShowHint = True
|
ShowHint = True
|
||||||
TabOrder = 3
|
TabOrder = 3
|
||||||
object btnColUp: TToolButton
|
object btnColUp: TToolButton
|
||||||
Left = 0
|
Left = 0
|
||||||
Top = 0
|
Top = 0
|
||||||
Hint = 'Move up'
|
Hint = 'Move up'
|
||||||
Caption = 'btnColUp'
|
Caption = 'Up'
|
||||||
ImageIndex = 74
|
ImageIndex = 74
|
||||||
|
Wrap = True
|
||||||
OnClick = btnColMoveClick
|
OnClick = btnColMoveClick
|
||||||
end
|
end
|
||||||
object btnColDown: TToolButton
|
object btnColDown: TToolButton
|
||||||
Left = 23
|
Left = 0
|
||||||
Top = 0
|
Top = 22
|
||||||
Hint = 'Move down'
|
Hint = 'Move down'
|
||||||
Caption = 'btnColDown'
|
Caption = 'Down'
|
||||||
ImageIndex = 75
|
ImageIndex = 75
|
||||||
|
Wrap = True
|
||||||
OnClick = btnColMoveClick
|
OnClick = btnColMoveClick
|
||||||
end
|
end
|
||||||
object btnCheckAll: TToolButton
|
object btnCheckAll: TToolButton
|
||||||
Left = 46
|
Left = 0
|
||||||
Top = 0
|
Top = 44
|
||||||
Hint = 'Select / Deselect all'
|
Hint = 'Select / Deselect all'
|
||||||
Caption = 'Select / Deselect all'
|
Caption = 'All'
|
||||||
ImageIndex = 128
|
ImageIndex = 128
|
||||||
OnClick = btnCheckAllClick
|
OnClick = btnCheckAllClick
|
||||||
end
|
end
|
||||||
|
Reference in New Issue
Block a user