summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2010-02-23 12:23:23 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2010-02-23 12:23:23 +0200
commit24baeac6a59e795623b088b93476d80355d1ba72 (patch)
tree3d92507f046c1bd577d1666e012eaf4be2ac8544
parent60defb75191abaa22d799c6def465aa14fd2c8da (diff)
downloadfpGUI-24baeac6a59e795623b088b93476d80355d1ba72.tar.xz
Docview: Fix treeview height issue under Windows.
-rw-r--r--docview/src/frm_main.pas10
1 files changed, 5 insertions, 5 deletions
diff --git a/docview/src/frm_main.pas b/docview/src/frm_main.pas
index 642f4765..7d84209a 100644
--- a/docview/src/frm_main.pas
+++ b/docview/src/frm_main.pas
@@ -1784,7 +1784,7 @@ begin
begin
Name := 'PageControl1';
SetPosition(0, 16, 260, 276);
- ActivePageIndex := 4;
+ ActivePageIndex := 0;
TabOrder := 0;
Align := alLeft;
OnChange := @PageControl1Change;
@@ -1794,7 +1794,7 @@ begin
with tsContents do
begin
Name := 'tsContents';
- SetPosition(3, 24, 254, 301);
+ SetPosition(3, 24, 254, 249);
Text := 'Contents';
end;
@@ -1802,7 +1802,7 @@ begin
with tvContents do
begin
Name := 'tvContents';
- SetPosition(4, 32, 242, 264);
+ SetPosition(4, 32, 242, 212);
Anchors := [anLeft,anRight,anTop,anBottom];
FontDesc := '#Label1';
ScrollWheelDelta := 60;
@@ -1830,7 +1830,7 @@ begin
with tsIndex do
begin
Name := 'tsIndex';
- SetPosition(3, 24, 254, 301);
+ SetPosition(3, 24, 254, 249);
Text := 'Index';
end;
@@ -1852,7 +1852,7 @@ begin
with lbIndex do
begin
Name := 'lbIndex';
- SetPosition(4, 32, 242, 264);
+ SetPosition(4, 32, 242, 212);
Anchors := [anLeft,anRight,anTop,anBottom];
FontDesc := '#List';
HotTrack := False;