Actions
Bug #1947
closedname wird nicht condition-abhängig genutzt
Start date:
10/14/2014
Due date:
% Done:
0%
Estimated time:
Description
<drawtext condition="lt({daynumeric},10)" name="day_text" x="{areaheight}*0.5" valign="center" font="{vdrOsd}" fontsize="100%" color="{clrMenuItemSelectable}" text="0{daynumeric}." /> <drawtext condition="gt({daynumeric},9)" name="day_text" x="{areaheight}*0.5" valign="center" font="{vdrOsd}" fontsize="100%" color="{clrMenuItemSelectable}" text="{daynumeric}." /> <drawtext condition="lt({month},10)" name="month_text" x="{posx(day_text)}+{width(day_text)}" valign="center" font="{vdrOsd}" fontsize="100%" color="{clrMenuItemSelectable}" text="0{month}." /> <drawtext condition="gt({month},9)" name="month_text" x="{posx(day_text)}+{width(day_text)}" valign="center" font="{vdrOsd}" fontsize="100%" color="{clrMenuItemSelectable}" text="{month}." /> <drawtext name="year" x="{posx(month_text)}+{width(month_text)}" valign="center" font="{vdrOsd}" fontsize="100%" color="{clrMenuItemSelectable}" text="{year}" />
Erwarten würde ich, dass posx und width von dem drawtext genommen wird, bei dem die condition zutrifft.
Actions