Skip to content

Commit

Permalink
Fix issue preventing suppression of the Msg tooltip for non-truncated…
Browse files Browse the repository at this point in the history
… messages.
  • Loading branch information
tmiw committed Feb 11, 2025
1 parent c23acac commit 0d60297
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/gui/dialogs/freedv_reporter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -869,6 +869,7 @@ void FreeDVReporterDialog::AdjustToolTip(wxMouseEvent& event)
std::string* sidPtr = (std::string*)m_listSpots->GetItemData(index);
tempUserMessage_ = allReporterData_[*sidPtr]->userMessage;
wxString userMessageTruncated = m_listSpots->GetItemText(index, desiredCol);
userMessageTruncated = userMessageTruncated.SubString(1, userMessageTruncated.size() - 1);

if (tipWindow_ == nullptr && tempUserMessage_ != userMessageTruncated)
{
Expand Down

0 comments on commit 0d60297

Please sign in to comment.