mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-01 11:20:19 +02:00
Removed space between minus and number in the countdown
This commit is contained in:
parent
e5f7e18d56
commit
f4dc5c3674
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue