summaryrefslogtreecommitdiffstats
path: root/qt-ui/profilegraphics.cpp
diff options
context:
space:
mode:
authorGravatar Anton Lundin <glance@acc.umu.se>2013-11-20 00:10:52 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-11-19 15:34:40 -0800
commitc7941f66b431ef2326ae0134765759800da088ca (patch)
tree287d200a1f15e0a6f53104a147b0c365dbe43ec3 /qt-ui/profilegraphics.cpp
parent6acff53735c41cc6636525aa364c62808219d3fb (diff)
downloadsubsurface-c7941f66b431ef2326ae0134765759800da088ca.tar.gz
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>
Diffstat (limited to 'qt-ui/profilegraphics.cpp')
-rw-r--r--qt-ui/profilegraphics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/profilegraphics.cpp b/qt-ui/profilegraphics.cpp
index 9ba01ac31..e69c5c7e0 100644
--- a/qt-ui/profilegraphics.cpp
+++ b/qt-ui/profilegraphics.cpp
@@ -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!") : "";