Removed space between minus and number in the countdown
This commit is contained in:
@@ -462,7 +462,7 @@ int runCustomReport (
|
|||||||
time_t cntdwn = (time_t) (now - dt);
|
time_t cntdwn = (time_t) (now - dt);
|
||||||
countdown = formatSecondsCompact ( cntdwn < 0 ? cntdwn * -1 : cntdwn );
|
countdown = formatSecondsCompact ( cntdwn < 0 ? cntdwn * -1 : cntdwn );
|
||||||
if ( cntdwn < 0 )
|
if ( cntdwn < 0 )
|
||||||
countdown = std::string("- ") + countdown;
|
countdown = std::string("-") + countdown;
|
||||||
context.hooks.trigger ("format-countdown_compact", "countdown_compact", countdown);
|
context.hooks.trigger ("format-countdown_compact", "countdown_compact", countdown);
|
||||||
table.addCell (row, columnCount, countdown);
|
table.addCell (row, columnCount, countdown);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user