tmf: Make columns in TimeGraphCombos moveable by default
authorBernd Hufmann <Bernd.Hufmann@ericsson.com>
Thu, 14 Jan 2016 20:14:41 +0000 (15:14 -0500)
committerBernd Hufmann <bernd.hufmann@ericsson.com>
Fri, 15 Jan 2016 19:40:09 +0000 (14:40 -0500)
An example implementation is the Control Flow view.

Change-Id: I9d801a8c30b6ae3c8a0b30e2bf0eb28d761d1833
Signed-off-by: Bernd Hufmann <Bernd.Hufmann@ericsson.com>
Reviewed-on: https://git.eclipse.org/r/64404
Reviewed-by: Hudson CI
Reviewed-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
Tested-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
tmf/org.eclipse.tracecompass.tmf.ui/src/org/eclipse/tracecompass/tmf/ui/widgets/timegraph/TimeGraphCombo.java

index 42d45a01a110fe36828a6ee73dfc784431725ec7..cc31d219d3cc37eca4dc4c0a234a73dd3ecfa432 100644 (file)
@@ -878,6 +878,7 @@ public class TimeGraphCombo extends Composite {
         final Tree tree = fTreeViewer.getTree();
         for (String columnName : columnNames) {
             TreeColumn column = new TreeColumn(tree, SWT.LEFT);
+            column.setMoveable(true);
             column.setText(columnName);
             column.pack();
         }
This page took 0.026645 seconds and 5 git commands to generate.