Bug in turkey zone continent assignment

merge-requests/237/merge
Tag 2023-01-14 14:00:51 -08:00
rodzic 602ae760a8
commit e4617bf8b5
3 zmienionych plików z 7 dodań i 6 usunięć

Wyświetl plik

@ -95,7 +95,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
<input id="documentDirectoryInput" type="file" nwdirectory onchange="directoryInput(this)" />
</div>
</div>
<div id="main" style="display: none">
<div id="main" style="display: none;">
<div id="mapDiv" class="mapDivEnd"></div>
<div id="mouseTrackDiv" style="display: none" class="mouseTrack"></div>
<div id="LegendDiv" style="display: none" class="legendDivEnd">

Wyświetl plik

@ -2981,7 +2981,7 @@ function registerHotKeys()
registerHotKey("KeyU", toggleMergeOverlay);
registerHotKey("KeyW", toggleGridMode);
registerHotKey("KeyX", toggleMouseTrack);
// registerHotKey("KeyY", toggleGlobalStrikes);
registerHotKey("KeyZ", setCenterQTH);
registerHotKey("Minus", toggleCRScript);
@ -6741,7 +6741,7 @@ function handleWsjtxDecode(newMessage)
}
newCallsign.cont = g_dxccInfo[newCallsign.dxcc].continent;
if (newCallsign.dxcc == 390 && newCallsign.zone == 1) { details.cont = "EU"; }
if (newCallsign.dxcc == 390 && newCallsign.zone == 1) { newCallsign.cont = "EU"; }
}
newCallsign.ituz = ituZoneFromCallsign(newCallsign.DEcall, newCallsign.dxcc);

Wyświetl plik

@ -21,7 +21,6 @@
#mapDiv {
height: 100%;
z-index: 0;
position: absolute;
top: 0;
@ -40,6 +39,7 @@
color: #fff;
display: none;
height: 100%;
}
.mapDivEnd {
@ -269,8 +269,8 @@
-webkit-border-radius: 6px;
}
html,
body {
html {
margin: 0px;
-webkit-user-select: none;
user-select: none;
height: 100%;
@ -283,6 +283,7 @@ body {
overflow: hidden;
width: 100%;
display: block;
filter:none;
}
button:focus {