mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
Clear chat connected to when session closes
This commit is contained in:
parent
b6edd073b2
commit
d04f3e65da
3 changed files with 14 additions and 1 deletions
|
@ -386,6 +386,11 @@ ipcMain.on("request-show-chat-window", () => {
|
|||
chat.show();
|
||||
});
|
||||
|
||||
ipcMain.on("request-clear-chat-connected", () => {
|
||||
//Clear chat window's connected with text
|
||||
chat.webContents.send("action-clear-reception-status");
|
||||
});
|
||||
|
||||
// UPDATE TNC CONNECTION
|
||||
ipcMain.on("request-update-tnc-ip", (event, data) => {
|
||||
win.webContents.send("action-update-tnc-ip", data);
|
||||
|
|
|
@ -666,7 +666,14 @@ ipcRenderer.on("action-update-reception-status", (event, arg) => {
|
|||
|
||||
document.getElementById("txtConnectedWithChat").textContent = data.dxcallsign;
|
||||
});
|
||||
|
||||
ipcRenderer.on("action-clear-reception-status", (event) => {
|
||||
//Clear connected with textbox
|
||||
let cwc = document.getElementById("txtConnectedWithChat");
|
||||
if (cwc.textContent != "------") {
|
||||
cwc.textContent = "------";
|
||||
//console.log("Reseting connected with");
|
||||
}
|
||||
});
|
||||
|
||||
ipcRenderer.on("action-update-transmission-status", (event, arg) => {
|
||||
var data = arg["data"][0];
|
||||
|
|
|
@ -2254,6 +2254,7 @@ ipcRenderer.on("action-update-tnc-state", (event, arg) => {
|
|||
"bi bi-chat-fill text-success me-1";
|
||||
} else {
|
||||
document.getElementById("spnConnectedWith").className = "bi bi-chat-fill";
|
||||
ipcRenderer.send("request-clear-chat-connected");
|
||||
}
|
||||
|
||||
// HAMLIB STATUS
|
||||
|
|
Loading…
Reference in a new issue