| author | Camilo Bernal | 2012-07-19 14:45:47 (EDT) |
|---|---|---|
| committer | Alexander Kurtakov | 2012-07-20 05:52:50 (EDT) |
| commit | 6b03d1e37a77dc856b458fb088ebf715bb14fb99 (patch) (side-by-side diff) | |
| tree | ea47543cca59a2afd4491ddf05aa4d1c39598728 | |
| parent | ace12772c67c7b9a04ed2c11ac1f8a07bb577218 (diff) | |
| download | org.eclipse.linuxtools-6b03d1e37a77dc856b458fb088ebf715bb14fb99.zip org.eclipse.linuxtools-6b03d1e37a77dc856b458fb088ebf715bb14fb99.tar.gz org.eclipse.linuxtools-6b03d1e37a77dc856b458fb088ebf715bb14fb99.tar.bz2 | |
fix for bug 349882 - Call Graph tab shows name underlined.
Add setFocus implementation to CallgraphView.
Change-Id: I59af746a4665a116ac5854c739860e642c2808e9
Reviewed-on: https://git.eclipse.org/r/6870
Reviewed-by: Alexander Kurtakov <akurtako@redhat.com>
IP-Clean: Alexander Kurtakov <akurtako@redhat.com>
Tested-by: Alexander Kurtakov <akurtako@redhat.com>
| -rw-r--r-- | systemtap/org.eclipse.linuxtools.callgraph/src/org/eclipse/linuxtools/internal/callgraph/CallgraphView.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/systemtap/org.eclipse.linuxtools.callgraph/src/org/eclipse/linuxtools/internal/callgraph/CallgraphView.java b/systemtap/org.eclipse.linuxtools.callgraph/src/org/eclipse/linuxtools/internal/callgraph/CallgraphView.java index c601370..4e65920 100644 --- a/systemtap/org.eclipse.linuxtools.callgraph/src/org/eclipse/linuxtools/internal/callgraph/CallgraphView.java +++ b/systemtap/org.eclipse.linuxtools.callgraph/src/org/eclipse/linuxtools/internal/callgraph/CallgraphView.java @@ -998,6 +998,9 @@ public class CallgraphView extends SystemTapView { @Override public void setFocus() { + if(masterComposite != null){ + masterComposite.setFocus(); + } } |

