Skip to content

Commit

Permalink
Add filename to FreeDV Reporter titlebar.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmiw committed Aug 18, 2024
1 parent 3a18c45 commit 1dba2ac
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/gui/dialogs/freedv_reporter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,11 @@ FreeDVReporterDialog::FreeDVReporterDialog(wxWindow* parent, wxWindowID id, cons
, filterSelfMessageUpdates_(false)
, filteredFrequency_(0)
{
if (wxGetApp().customConfigFileName != "")
{
SetTitle(wxString::Format("%s (%s)", _("FreeDV Reporter"), wxGetApp().customConfigFileName));
}

for (int col = 0; col < NUM_COLS; col++)
{
columnLengths_[col] = DefaultColumnWidths_[col];
Expand Down

0 comments on commit 1dba2ac

Please sign in to comment.