Skip to content

Commit

Permalink
Prevent headers from being truncated.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmiw committed Jun 18, 2023
1 parent 47ab0da commit 616b8e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/freedv_reporter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ void FreeDVReporterDialog::onUserConnectFn_(std::string sid, std::string lastUpd
// Resize all columns to the biggest value.
for (int col = 0; col <= 10; col++)
{
m_listSpots->SetColumnWidth(col, wxLIST_AUTOSIZE);
m_listSpots->SetColumnWidth(col, wxLIST_AUTOSIZE_USEHEADER);
}

m_listSpots->Thaw();
Expand Down Expand Up @@ -404,4 +404,4 @@ wxString FreeDVReporterDialog::makeValidTime_(std::string timeStr)
{
return _("Unknown");
}
}
}

0 comments on commit 616b8e4

Please sign in to comment.