mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Removed space between minus and number in the countdown
This commit is contained in:
parent
f4dc5c3674
commit
485734e107
1 changed files with 1 additions and 1 deletions
|
@ -437,7 +437,7 @@ int runCustomReport (
|
|||
time_t cntdwn = (time_t) (now - dt);
|
||||
countdown = formatSeconds ( cntdwn < 0 ? cntdwn * -1 : cntdwn );
|
||||
if ( cntdwn < 0 )
|
||||
countdown = std::string("- ") + countdown;
|
||||
countdown = std::string("-") + countdown;
|
||||
context.hooks.trigger ("format-countdown", "countdown", countdown);
|
||||
table.addCell (row, columnCount, countdown);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue