Skip to content

Commit

Permalink
Changed: ESMモードの実装(4)フィードバック反映 #608
Browse files Browse the repository at this point in the history
Changed: SuperCheckとRBNを照合する(11) #632
  • Loading branch information
jr8ppg committed Feb 13, 2025
1 parent ab16623 commit 897015d
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions zlog/main.pas
Original file line number Diff line number Diff line change
Expand Up @@ -11978,6 +11978,8 @@ procedure TMainForm.BandScopeNotifyWorked(aQSO: TQSO);
end;
end;

// 相手コールサインの設定
// バンドスコープから呼ばれる
procedure TMainForm.SetYourCallsign(strCallsign, strNumber: string);
var
nID: Integer;
Expand Down Expand Up @@ -12010,7 +12012,13 @@ procedure TMainForm.SetYourCallsign(strCallsign, strNumber: string);
end;
end;

MyContest.MultiForm.SetNumberEditFocus;
// OriginalモードではNumber欄へ、ESMモードではEnterで相手を呼ぶためにCall欄へ
if dmZLogGlobal.Settings._operate_mode = omOriginal then begin
MyContest.MultiForm.SetNumberEditFocus;
end
else begin
CallsignEdit.SetFocus();
end;
end;

// Cluster or BandScopeから呼ばれる
Expand Down Expand Up @@ -14467,8 +14475,8 @@ procedure TMainForm.AddSuperData(Sp: TSpot);
N := Sp.Number;

fDomestic := IsDomestic(C);
if ((dmZLogGlobal.Settings._bandscope_show_ja_spots = True) and (fDomestic = False)) or
((dmZLogGlobal.Settings._bandscope_show_dx_spots = True) and (fDomestic = True)) then begin
if (((dmZLogGlobal.Settings._bandscope_show_ja_spots = True) and (fDomestic = True)) = False) and
(((dmZLogGlobal.Settings._bandscope_show_dx_spots = True) and (fDomestic = False)) = False) then begin
Exit;
end;

Expand Down

0 comments on commit 897015d

Please sign in to comment.