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

Use this category to discuss anything related to the development of Guayadeque.
Locked
l300lvl
Posts: 226
Joined: Sun Mar 06, 2011 12:21 pm

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

Post 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
User avatar
anonbeat
Posts: 2048
Joined: Thu Sep 16, 2010 9:47 pm

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

Post 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.
l300lvl
Posts: 226
Joined: Sun Mar 06, 2011 12:21 pm

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

Post 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?
Locked