>>>>> Wendy Seltzer writes:
w> I'm still puzzled by this. The editarrows are being positioned and scaled
w> differently from the bar with colored cut indicators. On my screen, the
w> colored indicators are correct (the whole program fits on screen), while the
w> editarrows are above and shifted to the right. This happens no matter what
w> the aspect ratio of the program being shown.
There's a typo that seems to be causing this problem. (I
think this is not a complete fix. editarrowRect is not adjusted by
Reinit so the arrows are misplaced again when changing letterbox/zoom
modes.)
Index: libs/libmythtv/osd.cpp
===================================================================
--- libs/libmythtv/osd.cpp (revision 885)
+++ libs/libmythtv/osd.cpp (working copy)
@@ -37,7 +37,8 @@
needPillarBox(false),
themepath(FindTheme(gContext->GetSetting("OSDTheme"))),
wscale(1.0f), fscale(fontScaling),
- hmult(vis_bounds.width() / 640.0f), wmult(vis_bounds.height() / 480.0f),
+ hmult(vis_bounds.height() / 480.0f),
+ wmult(vis_bounds.width() / 640.0f),
xoffset(vis_bounds.left()), yoffset(vis_bounds.top()),
displaywidth(vis_bounds.width()), displayheight(vis_bounds.height()),
m_setsvisible(false),
--
Gregorio Gervasio, Jr.
_______________________________________________
mythtv-dev mailing list
[email protected]
http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-dev