View Single Post
Posts: 75 | Thanked: 4 times | Joined on Apr 2006
#178
I wanted to put the scale on the lower right of my display (this precludes the ability to display other things there), so in maemo-mapper.c, I changed this line:
Code:
    _scale_rect.x = (_screen_width_pixels - SCALE_WIDTH) / 2;
to this:
Code:
    _scale_rect.x = _screen_width_pixels - SCALE_WIDTH;
and voila.