From 94a97b96f25aec6dee7091ee594b827e1429afad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Stenac?= <zorglub@videolan.org> Date: Sun, 27 Aug 2006 13:05:51 +0000 Subject: [PATCH] Ensure minimum spacing between the status bar and the text --- modules/gui/qt4/main_interface.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/gui/qt4/main_interface.cpp b/modules/gui/qt4/main_interface.cpp index f650bb9004d4..711037cd265a 100644 --- a/modules/gui/qt4/main_interface.cpp +++ b/modules/gui/qt4/main_interface.cpp @@ -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 ) -- GitLab