mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
Print bailout on separate row from SP change
It looked kinda weird without a separator between the SP change and the bailout. Signed-off-by: Anton Lundin <glance@acc.umu.se> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
6acff53735
commit
c7941f66b4
1 changed files with 1 additions and 1 deletions
|
@ -850,7 +850,7 @@ void ProfileGraphicsView::plot_one_event(struct event *ev)
|
|||
name += QString(":%1").arg(ev->value);
|
||||
}
|
||||
} else if (ev->name && name == "SP change") {
|
||||
name += tr("Bailing out to OC");
|
||||
name += "\n" + tr("Bailing out to OC");
|
||||
} else {
|
||||
name += ev->flags == SAMPLE_FLAGS_BEGIN ? tr(" begin", "Starts with space!") :
|
||||
ev->flags == SAMPLE_FLAGS_END ? tr(" end", "Starts with space!") : "";
|
||||
|
|
Loading…
Reference in a new issue