hugovk / eggclock60

Automatically exported from code.google.com/p/eggclock60
0 stars 0 forks source link

Hard to read numbers #2

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Black/dark background/theme

What is the expected output? What do you see instead?
The numbers are not visible/hard to read as they have the same collor as
the background.

What version of the product are you using? On what operating system?
1.3 on Nokia N82 latest update

Please provide any additional information below.
If the collour of the numbers and all the other symbols can be changed to
the collor currently in use by the system for text, or get a white
background around the numbers it will be visible no matter what collor the
user has on his/her phone.

Original issue reported on code.google.com by cato.olf...@gmail.com on 30 May 2008 at 10:29

GoogleCodeExporter commented 9 years ago
Thanks for making this open source!

This is also a problem for me. So I've download the source and fixed this bug 
by 
painting a white background instead of using the theme's skin.

In EggClockAppView.cpp, simply replace:

    MAknsSkinInstance* skin = AknsUtils::SkinInstance();
    MAknsControlContext* cc = AknsDrawUtils::ControlContext(this);
    AknsDrawUtils::Background(skin, cc, this, gc, aRect);

with:

    gc.SetBrushColor(KRgbWhite);
    gc.Clear(Rect());

Original comment by hugovk@gmail.com on 31 Mar 2009 at 7:38

GoogleCodeExporter commented 9 years ago
Fixed by Michele in r11 and available in EggClock_1.5.sisx.

Original comment by hugovk@gmail.com on 28 Apr 2009 at 7:14