Removed space between minus and number in the countdown

This commit is contained in:
Federico Hernandez 2010-03-05 23:47:01 +01:00
parent e5f7e18d56
commit f4dc5c3674

View file

@ -462,7 +462,7 @@ int runCustomReport (
time_t cntdwn = (time_t) (now - dt);
countdown = formatSecondsCompact ( cntdwn < 0 ? cntdwn * -1 : cntdwn );
if ( cntdwn < 0 )
countdown = std::string("- ") + countdown;
countdown = std::string("-") + countdown;
context.hooks.trigger ("format-countdown_compact", "countdown_compact", countdown);
table.addCell (row, columnCount, countdown);
}