X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FDXCommandmode.pm;h=900460aef2c1df89f65fb48b1a97fd1ef7bb3eeb;hb=963a74a359bda8ac6c348977f70d85e8e879697a;hp=8bb6659e5f0f7fb70e849fb30da9b9150b94e6a9;hpb=e884309a839e931eedb2efdc2a09901300bf4e31;p=spider.git diff --git a/perl/DXCommandmode.pm b/perl/DXCommandmode.pm index 8bb6659e..900460ae 100644 --- a/perl/DXCommandmode.pm +++ b/perl/DXCommandmode.pm @@ -994,12 +994,21 @@ sub format_dx_spot my $loc = ''; my $clth = $self->{consort} eq 'local' ? 29 : 30; my $comment = substr (($_[3] || ''), 0, $clth); - $comment .= ' ' x ($clth - length($comment)); + $comment .= ' ' x ($clth - (length($comment))); + if ($self->{user}->wantgrid) { + my $ref = DXUser::get_current($_[1]); + if ($ref && $ref->qra) { + $loc = ' ' . substr($ref->qra, 0, 4); + $comment = substr $comment, 0, ($clth - (length($comment)+length($loc))); + $comment .= $loc; + $loc = ''; + } + } + if ($self->{user}->wantgrid) { my $ref = DXUser::get_current($_[4]); - if ($ref) { - $loc = $ref->qra || ''; - $loc = ' ' . substr($loc, 0, 4) if $loc; + if ($ref && $ref->qra) { + $loc = ' ' . substr($ref->qra, 0, 4); } }