FIX: Bug [ 2421601 ] border

This commit is contained in:
Alexander Koblov 2008-12-12 20:10:54 +00:00
commit 5f4fde4979
3 changed files with 13 additions and 12 deletions

View file

@ -1,4 +1,5 @@
09.12.2008 FIX: Bug [ 2403863 ] rubbish after copying
12.12.2008 FIX: Bug [ 2421601 ] border
09.12.2008 FIX: Bug [ 2403863 ] rubbish after copying
07.12.2008 ADD: Feature Request [ 2404017 ] context menu for Drive button menu
05.12.2008 FIX: Bug [ 2383944 ] drive buttons
03.12.2008 FIX: Bug [ 2379193 ] font at first line

View file

@ -390,7 +390,7 @@ object frmMain: TfrmMain
EnvVar = '%commander_path%'
end
object pnlKeys: TPanel
Height = 27
Height = 25
Top = 699
Width = 1028
Align = alBottom
@ -404,7 +404,7 @@ object frmMain: TfrmMain
object btnF3: TSpeedButton
Left = 1
Height = 23
Top = 4
Top = 1
Width = 75
Action = actView
Color = clBtnFace
@ -414,7 +414,7 @@ object frmMain: TfrmMain
object btnF4: TSpeedButton
Left = 76
Height = 23
Top = 4
Top = 1
Width = 75
Action = actEdit
Color = clBtnFace
@ -424,7 +424,7 @@ object frmMain: TfrmMain
object btnF5: TSpeedButton
Left = 151
Height = 23
Top = 4
Top = 1
Width = 75
Action = actCopy
Color = clBtnFace
@ -434,7 +434,7 @@ object frmMain: TfrmMain
object btnF6: TSpeedButton
Left = 226
Height = 23
Top = 4
Top = 1
Width = 75
Action = actRename
Color = clBtnFace
@ -444,7 +444,7 @@ object frmMain: TfrmMain
object btnF7: TSpeedButton
Left = 301
Height = 23
Top = 4
Top = 1
Width = 75
Action = actMakeDir
Color = clBtnFace
@ -454,7 +454,7 @@ object frmMain: TfrmMain
object btnF8: TSpeedButton
Left = 376
Height = 23
Top = 4
Top = 1
Width = 75
Action = actDelete
Color = clBtnFace
@ -464,7 +464,7 @@ object frmMain: TfrmMain
object btnF10: TSpeedButton
Left = 539
Height = 23
Top = 4
Top = 1
Width = 75
Action = actExit
Color = clBtnFace
@ -473,8 +473,8 @@ object frmMain: TfrmMain
end
object btnF9: TSpeedButton
Left = 448
Height = 22
Top = 4
Height = 23
Top = 1
Width = 89
Action = actShowMenu
Color = clBtnFace

View file

@ -1046,7 +1046,7 @@ var
iWidth:Integer;
begin
iWidth:=pnlKeys.Width div 8;
btnF3.Left:=1;
btnF3.Left:=(pnlKeys.Width mod 8) div 2;
btnF3.Width:=iWidth;
btnF4.Left:=btnF3.Left+btnF3.Width;