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)" /> <input id="documentDirectoryInput" type="file" nwdirectory onchange="directoryInput(this)" />
</div> </div>
</div> </div>
<div id="main" style="display: none"> <div id="main" style="display: none;">
<div id="mapDiv" class="mapDivEnd"></div> <div id="mapDiv" class="mapDivEnd"></div>
<div id="mouseTrackDiv" style="display: none" class="mouseTrack"></div> <div id="mouseTrackDiv" style="display: none" class="mouseTrack"></div>
<div id="LegendDiv" style="display: none" class="legendDivEnd"> <div id="LegendDiv" style="display: none" class="legendDivEnd">

Wyświetl plik

@ -2981,7 +2981,7 @@ function registerHotKeys()
registerHotKey("KeyU", toggleMergeOverlay); registerHotKey("KeyU", toggleMergeOverlay);
registerHotKey("KeyW", toggleGridMode); registerHotKey("KeyW", toggleGridMode);
registerHotKey("KeyX", toggleMouseTrack); registerHotKey("KeyX", toggleMouseTrack);
// registerHotKey("KeyY", toggleGlobalStrikes);
registerHotKey("KeyZ", setCenterQTH); registerHotKey("KeyZ", setCenterQTH);
registerHotKey("Minus", toggleCRScript); registerHotKey("Minus", toggleCRScript);
@ -6741,7 +6741,7 @@ function handleWsjtxDecode(newMessage)
} }
newCallsign.cont = g_dxccInfo[newCallsign.dxcc].continent; 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); newCallsign.ituz = ituZoneFromCallsign(newCallsign.DEcall, newCallsign.dxcc);

Wyświetl plik

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