From 6465493e3d6b32176951f05d0b47a4f6ab1699a7 Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Fri, 30 Jun 2023 15:31:38 -0400 Subject: [PATCH] relabel Last TG to Last Dst; --- src/monitor/NodeStatusWnd.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/monitor/NodeStatusWnd.h b/src/monitor/NodeStatusWnd.h index fc61a804..fbffe488 100644 --- a/src/monitor/NodeStatusWnd.h +++ b/src/monitor/NodeStatusWnd.h @@ -109,8 +109,8 @@ private: FLabel m_rxFreqLabel{"Rx: ", this}; FLabel m_rxFreq{this}; - FLabel m_lastTGLabel{"Last TG: ", this}; - FLabel m_lastTG{this}; + FLabel m_lastDstLabel{"Last Dst: ", this}; + FLabel m_lastDst{this}; FLabel m_lastSrcLabel{"Last Src: ", this}; FLabel m_lastSrc{this}; @@ -187,10 +187,10 @@ private: // last TG { - m_lastTGLabel.setGeometry(FPoint(2, 4), FSize(11, 1)); + m_lastDstLabel.setGeometry(FPoint(2, 4), FSize(11, 1)); - m_lastTG.setGeometry(FPoint(13, 4), FSize(8, 1)); - m_lastTG.setText("None"); + m_lastDst.setGeometry(FPoint(13, 4), FSize(8, 1)); + m_lastDst.setText("None"); } // last source @@ -352,10 +352,10 @@ private: if (rsp["lastDstId"].is()) { uint32_t lastDstId = rsp["lastDstId"].get(); if (lastDstId == 0) { - m_lastTG.setText("None"); + m_lastDst.setText("None"); } else { - m_lastTG.setText(__INT_STR(lastDstId)); + m_lastDst.setText(__INT_STR(lastDstId)); } } else {