summaryrefslogtreecommitdiff
path: root/docview/src/frm_main.pas
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graeme@mastermaths.co.za>2010-08-19 16:09:58 +0200
committerGraeme Geldenhuys <graeme@mastermaths.co.za>2010-08-19 16:09:58 +0200
commit2e435c928e72a9a0529e30db54122af75160c49b (patch)
tree4717ca6b0e11e368448c32306008d970705373f3 /docview/src/frm_main.pas
parented0126691c5f76aa0b26a3c8f0927d3cbb87eb46 (diff)
downloadfpGUI-2e435c928e72a9a0529e30db54122af75160c49b.tar.xz
Docview: disabled buttons in Notes tab. Notes feature not implemented yet.
Diffstat (limited to 'docview/src/frm_main.pas')
-rw-r--r--docview/src/frm_main.pas7
1 files changed, 5 insertions, 2 deletions
diff --git a/docview/src/frm_main.pas b/docview/src/frm_main.pas
index 3e24c320..4a6231cf 100644
--- a/docview/src/frm_main.pas
+++ b/docview/src/frm_main.pas
@@ -2122,7 +2122,7 @@ begin
with tsNotes do
begin
Name := 'tsNotes';
- SetPosition(3, 24, 254, 289);
+ SetPosition(3, 24, 254, 249);
Text := 'Notes';
end;
@@ -2130,7 +2130,7 @@ begin
with ListBox1 do
begin
Name := 'ListBox1';
- SetPosition(4, 32, 242, 252);
+ SetPosition(4, 32, 242, 212);
Anchors := [anLeft,anRight,anTop,anBottom];
FontDesc := '#List';
Hint := '';
@@ -2150,6 +2150,7 @@ begin
ImageMargin := 0;
ImageName := 'stdimg.add';
TabOrder := 1;
+ Enabled := false;
end;
btnNotesEdit := TfpgButton.Create(tsNotes);
@@ -2163,6 +2164,7 @@ begin
ImageMargin := 0;
ImageName := 'stdimg.edit';
TabOrder := 2;
+ Enabled := False;
end;
btnNotesDel := TfpgButton.Create(tsNotes);
@@ -2176,6 +2178,7 @@ begin
ImageMargin := 0;
ImageName := 'stdimg.remove';
TabOrder := 3;
+ Enabled := False;
end;
btnNotesGoto := TfpgButton.Create(tsNotes);