Skip to content
Snippets Groups Projects
Commit 94a97b96 authored by zorglub's avatar zorglub
Browse files

Ensure minimum spacing between the status bar and the text

parent 2fe13ef6
No related branches found
No related tags found
No related merge requests found
......@@ -190,12 +190,12 @@ void MainInterface::setDisplay( float pos, int time, int length )
secstotimestr( psz_time, time );
QString title;
title.sprintf( "%s/%s", psz_time, psz_length );
timeLabel->setText( title );
timeLabel->setText( " "+title+" " );
}
void MainInterface::setName( QString name )
{
nameLabel->setText( name );
nameLabel->setText( " " + name+" " );
}
void MainInterface::setStatus( int status )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment