aboutsummaryrefslogtreecommitdiff
path: root/lib/gui/elistboxcontent.cpp
diff options
context:
space:
mode:
authorRonny Strutz <ronny.strutz@multimedia-labs.de>2005-09-29 00:52:36 +0000
committerRonny Strutz <ronny.strutz@multimedia-labs.de>2005-09-29 00:52:36 +0000
commitdcf8840f6044c746c54b76e05156bf691587ffee (patch)
treeb3420ca6754229fa48cd77341e5a5d16dba85647 /lib/gui/elistboxcontent.cpp
parentc046e98830b87ea1f275e4c2d4ebc5c0cb7d0321 (diff)
downloadenigma2-dcf8840f6044c746c54b76e05156bf691587ffee.tar.gz
enigma2-dcf8840f6044c746c54b76e05156bf691587ffee.zip
changed default fontsize(s)
FIXME handle fontstuff from skin
Diffstat (limited to 'lib/gui/elistboxcontent.cpp')
-rw-r--r--lib/gui/elistboxcontent.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/gui/elistboxcontent.cpp b/lib/gui/elistboxcontent.cpp
index cc661d47..f804ee0e 100644
--- a/lib/gui/elistboxcontent.cpp
+++ b/lib/gui/elistboxcontent.cpp
@@ -110,7 +110,7 @@ void eListboxTestContent::setSize(const eSize &size)
void eListboxTestContent::paint(gPainter &painter, eWindowStyle &style, const ePoint &offset, int selected)
{
- ePtr<gFont> fnt = new gFont("Arial", 14);
+ ePtr<gFont> fnt = new gFont("Arial", 20);
painter.clip(eRect(offset, m_size));
style.setStyle(painter, selected ? eWindowStyle::styleListboxSelected : eWindowStyle::styleListboxNormal);
painter.clear();
@@ -219,7 +219,7 @@ void eListboxStringContent::setSize(const eSize &size)
void eListboxStringContent::paint(gPainter &painter, eWindowStyle &style, const ePoint &offset, int selected)
{
- ePtr<gFont> fnt = new gFont("Arial", 14);
+ ePtr<gFont> fnt = new gFont("Arial", 20);
painter.clip(eRect(offset, m_itemsize));
style.setStyle(painter, selected ? eWindowStyle::styleListboxSelected : eWindowStyle::styleListboxNormal);
painter.clear();
@@ -388,7 +388,7 @@ void eListboxPythonStringContent::invalidateEntry(int index)
void eListboxPythonConfigContent::paint(gPainter &painter, eWindowStyle &style, const ePoint &offset, int selected)
{
- ePtr<gFont> fnt = new gFont("Arial", 14);
+ ePtr<gFont> fnt = new gFont("Arial", 20);
ePtr<gFont> fnt2 = new gFont("Arial", 16);
painter.clip(eRect(offset, m_itemsize));
style.setStyle(painter, selected ? eWindowStyle::styleListboxSelected : eWindowStyle::styleListboxNormal);