From 3f1e40c12c484eca214e1cbc988f308eeae8b1c7 Mon Sep 17 00:00:00 2001 From: trialuser02 Date: Sat, 16 Feb 2008 14:27:52 +0000 Subject: some font and color fixes git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@243 90c681e8-e032-0410-971d-27865f9a5e38 --- src/ui/textscroller.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'src/ui/textscroller.cpp') diff --git a/src/ui/textscroller.cpp b/src/ui/textscroller.cpp index 35e4ed4eb..4f3e3be80 100644 --- a/src/ui/textscroller.cpp +++ b/src/ui/textscroller.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2006 by Ilya Kotov * + * Copyright (C) 2006-2008 by Ilya Kotov * * forkotov02@hotmail.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -38,7 +38,7 @@ TextScroller::TextScroller ( QWidget *parent ) { pointer = this; m_skin = Skin::getPointer(); - m_pixmap = QPixmap ( 154,15 ); + m_pixmap = QPixmap ( 150,15 ); x = 0; m_text = "Qt-based Multimedia Player (Qmmp " + QString(QMMP_STR_VERSION) + ")"; m_update = FALSE; @@ -82,15 +82,13 @@ void TextScroller::setText(const QString& text) void TextScroller::updateSkin() { - m_color.setNamedColor(m_skin->getPLValue("normal")); + m_color.setNamedColor(m_skin->getPLValue("mbfg")); } void TextScroller::readSettings() { QSettings settings(QDir::homePath()+"/.qmmp/qmmprc", QSettings::IniFormat); QString fontname = settings.value("MainWindow/Font","").toString(); - if (fontname.isEmpty ()) - fontname = QFont("Helvetica [Cronyx]", 9).toString(); m_font.fromString(fontname); if (m_update) -- cgit v1.2.3-13-gbd6f