[vlc-devel] [PATCH] Correct the text alignment of the tags 'Date' and 'Track number' in the -media information- tab

Daniel Marth danielmarth at gmx.at
Thu Jan 6 05:17:22 CET 2011


Changes the alignment of the 'Date' and 'Track number' tags in the media-
information-tab to left.
GCI-task: http://www.google-
melange.com/gci/task/show/google/gci2010/videolan/t129200322539
Ticket: http://trac.videolan.org/vlc/ticket/2894

---
 modules/gui/qt4/components/info_panels.cpp |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/modules/gui/qt4/components/info_panels.cpp 
b/modules/gui/qt4/components/info_panels.cpp
index 506e653..53b343d 100644
--- a/modules/gui/qt4/components/info_panels.cpp
+++ b/modules/gui/qt4/components/info_panels.cpp
@@ -87,14 +87,12 @@ MetaPanel::MetaPanel( QWidget *parent,
                   line, 5, 1, 2  );
     seqnum_text = new QLineEdit;
     seqnum_text->setInputMask("0000");
-    seqnum_text->setAlignment( Qt::AlignRight );
     metaLayout->addWidget( seqnum_text, line, 7, 1, 3 );
     line++;
 
     /* Date (Should be in years) */
     date_text = new QLineEdit;
     date_text->setInputMask("0000");
-    date_text->setAlignment( Qt::AlignRight );
     metaLayout->addWidget( new QLabel( qtr( VLC_META_DATE ) + " :" ), line, 0 
);
     metaLayout->addWidget( date_text, line, 1, 1, 3 );
 
-- 
1.7.1




More information about the vlc-devel mailing list