Page 1 of 1

Only display "Guayadeque" *.version in title when not playin

Posted: Sun Oct 14, 2012 8:35 pm
by l300lvl
I was hoping I could do something simple like this to only show Guayadeque and the version in the title when theres no song playing, but it doesn't update if you stop the song. So I thought I'd make a feature request.

open */guayadeque/src/MainFrame.cpp & find and modify around line 1770 to look like so:

// -------------------------------------------------------------------------------- //
void guMainFrame::OnUpdateTrack( wxCommandEvent &event )
{
guTrack * Track = ( guTrack * ) event.GetClientData();
if( Track )
{
SetTitle( Track->m_SongName + wxT( " / " ) + Track->m_ArtistName +
wxT( " " ) );

if( m_TaskBarIcon )
{
m_TaskBarIcon->SetIcon( m_AppIcon, wxT( " " "\r" ) +
Track->m_ArtistName + wxT( "\n" ) +
Track->m_SongName );
}
}
else

Only display "Guayadeque" *.version in title when not playin

Posted: Tue Oct 16, 2012 7:14 am
by anonbeat
Guayadeque puts in the title the loaded track... Note that even when you removed all tracks in the player playlist you can continue listenning to the track that is currently loaded.

Only display "Guayadeque" *.version in title when not playin

Posted: Tue Oct 16, 2012 11:49 pm
by l300lvl
Oh well that makes sense then, it should still show the track title when stopped since it is still loaded.

So could this be an accepted feature change?