2019-09-09 Fred Gleason <fredg@paravelsystems.com>

* Fixed a bug in rdairplay(1) that caused the log name displayed
	on the title bar to have its last four characters truncated.
This commit is contained in:
Fred Gleason 2019-09-09 15:35:52 -04:00
parent c9e9dccbfd
commit 446eabbad7
2 changed files with 4 additions and 1 deletions

View File

@ -19099,3 +19099,6 @@
2019-09-09 Patrick Linstruth <patrick@deltecent.com>
* Fixed a bug in rdlibrary(1) multi-edit where an empty 'Year
Released' field clears the date from selected carts.
2019-09-09 Fred Gleason <fredg@paravelsystems.com>
* Fixed a bug in rdairplay(1) that caused the log name displayed
on the title bar to have its last four characters truncated.

View File

@ -2096,7 +2096,7 @@ void MainWidget::SetCaption()
setWindowTitle(QString("RDAirPlay")+" v"+VERSION+" - "+tr("Host")+": "+
rda->config()->stationName()+" "+
tr("User:")+" "+rda->ripc()->user()+" "+
tr("Log:")+" "+log.left(log.length()-4)+" "+
tr("Log:")+" "+log+" "+
tr("Service:")+" "+air_log[0]->serviceName());
}