Skip to content
Snippets Groups Projects
Commit aa4612f8 authored by karlmichaelschindler's avatar karlmichaelschindler
Browse files

fix that row of first oscillator could not be edited.

git-svn-id: svn+ssh://michael-ep3.physik.uni-halle.de/Users/Shared/EELS2@103 7e267752-d5d8-41c0-93cd-a7fa012602f9
parent 4f818295
No related branches found
No related tags found
No related merge requests found
......@@ -16,8 +16,10 @@
<ComponentName Value="MainForm"/>
<HasResources Value="True"/>
<ResourceBaseClass Value="Form"/>
<IsVisibleTab Value="True"/>
<EditorIndex Value="1"/>
<CursorPos X="25" Y="10"/>
<TopLine Value="352"/>
<CursorPos X="64" Y="335"/>
<UsageCount Value="202"/>
<Loaded Value="True"/>
<LoadedDesigner Value="True"/>
......@@ -64,7 +66,6 @@
<ComponentName Value="DiagrammForm"/>
<HasResources Value="True"/>
<ResourceBaseClass Value="Form"/>
<IsVisibleTab Value="True"/>
<EditorIndex Value="2"/>
<TopLine Value="22"/>
<CursorPos X="28" Y="46"/>
......
......@@ -188,7 +188,7 @@ begin
Layergroup[0].OsciStringGrid.FixedCols := 0;
Layergroup[0].OsciStringGrid.Options := [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goEditing, goSmoothScroll];
Layergroup[0].OsciStringGrid.RowCount := 4;
Layergroup[0].OsciStringGrid.FixedRows := 2;
Layergroup[0].OsciStringGrid.FixedRows := 1;
Layergroup[0].OsciStringGrid.ScrollBars := ssVertical;
Layergroup[0].OsciStringGrid.Rows[0].add('frequ.');
Layergroup[0].OsciStringGrid.Rows[0].add('q');
......@@ -335,7 +335,7 @@ begin
Layergroup[NumberOfLayers - 1].OsciStringGrid.FixedCols := 0;
Layergroup[NumberOfLayers - 1].OsciStringGrid.Options := [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goEditing, goSmoothScroll];
Layergroup[NumberOfLayers - 1].OsciStringGrid.RowCount := 2;
Layergroup[NumberOfLayers - 1].OsciStringGrid.FixedRows := 2;
Layergroup[NumberOfLayers - 1].OsciStringGrid.FixedRows := 1;
Layergroup[NumberOfLayers - 1].OsciStringGrid.ScrollBars := ssVertical;
Layergroup[NumberOfLayers - 1].OsciStringGrid.Rows[0].add('frequ.');
Layergroup[NumberOfLayers - 1].OsciStringGrid.Rows[0].add('q');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment