diff --git a/trimsp/src/TrimSPGUI/TrimSPGUI.pl b/trimsp/src/TrimSPGUI/TrimSPGUI.pl index 007260f..42c4b3b 100644 --- a/trimsp/src/TrimSPGUI/TrimSPGUI.pl +++ b/trimsp/src/TrimSPGUI/TrimSPGUI.pl @@ -1,6 +1,6 @@ # Form implementation generated from reading ui file 'TrimSPGUI.ui' # -# Created: Thu May 16 11:49:01 2013 +# Created: Fri May 17 13:00:15 2013 # by: The PerlQt User Interface Compiler (puic) # # WARNING! All changes made in this file will be lost! @@ -2534,7 +2534,7 @@ sub StartSequenceOne my $iScan=0; foreach (@SValues) { if ($All{"dRadio"}) { - $ScanAttrib->setText($All{"ScandL"},2,$_); + layerTable->setText($All{"ScandL"},2,$_); } else { $ScanAttrib->setText($_); } diff --git a/trimsp/src/TrimSPGUI/TrimSPGUI.ui.h b/trimsp/src/TrimSPGUI/TrimSPGUI.ui.h index 2a5d561..0697b0f 100644 --- a/trimsp/src/TrimSPGUI/TrimSPGUI.ui.h +++ b/trimsp/src/TrimSPGUI/TrimSPGUI.ui.h @@ -531,7 +531,7 @@ void TrimSPGUI::StartSequenceOne() my $iScan=0; foreach (@SValues) { if ($All{"dRadio"}) { - $ScanAttrib->setText($All{"ScandL"},2,$_); + layerTable->setText($All{"ScandL"},2,$_); } else { $ScanAttrib->setText($_); } diff --git a/trimsp/src/TrimSPGUI4/TrimSPGUI4.pm b/trimsp/src/TrimSPGUI4/TrimSPGUI4.pm index f872507..ca751ae 100644 --- a/trimsp/src/TrimSPGUI4/TrimSPGUI4.pm +++ b/trimsp/src/TrimSPGUI4/TrimSPGUI4.pm @@ -591,7 +591,11 @@ sub StartSequenceOne() my $ScanAttrib = child("Qt::LineEdit",$ScanVar); my $iScan=0; foreach (@SValues) { - $ScanAttrib->setText($_); + if ($All{"comboScan"}==5) { + layerTable->setText($All{"ScandL"},2,$_); + } else { + $ScanAttrib->setText($_); + } if ( $All{"SdzFlag"} == 1) { if ($All{"comboScan"}==0) { this->{ui}->dz->setText($SdzValues[$iScan]);