You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
tmf.ui: Add the option for markers to be in the background
Addresses bug 211
[Added] Ability to have background markers
Change-Id: Ie681f5577b5e9abdb8ebeb75c456f860625af1cb
Signed-off-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
Copy file name to clipboardExpand all lines: tmf/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/internal/tmf/ui/dialogs/AddBookmarkDialog.java
Copy file name to clipboardExpand all lines: tmf/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/tmf/ui/views/timegraph/AbstractTimeGraphView.java
Copy file name to clipboardExpand all lines: tmf/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/tmf/ui/widgets/timegraph/TimeGraphViewer.java
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2498,7 +2498,8 @@ public void runWithEvent(Event event) {
2498
2498
if (dialog.open() == Window.OK) {
2499
2499
finalStringlabel = dialog.getValue();
2500
2500
finalRGBArgba = dialog.getColorValue();
2501
-
IMarkerEventbookmark = newMarkerEvent(null, time, duration, IMarkerEvent.BOOKMARKS, rgba, label, true);
2501
+
finalbooleanforeground = dialog.getForeground();
2502
+
IMarkerEventbookmark = newMarkerEvent(null, time, duration, IMarkerEvent.BOOKMARKS, rgba, label, foreground);
0 commit comments