Skip to content

Commit

Permalink
ALTERED THE title of popup window -right click of datanode element
Browse files Browse the repository at this point in the history
  • Loading branch information
SravanthiSinha committed Dec 5, 2013
1 parent 8ade802 commit bbccfb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/org/pathvisio/wpclient/WikiPathwaysClientPlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ public void openPathwayXrefWithProgress(final Xref x, final int rev, final File

SwingWorker<Boolean, Void> sw = new SwingWorker<Boolean, Void>() {
protected Boolean doInBackground() throws Exception {
pk.setTaskName("Finding Related Pathways");
pk.setTaskName("Finding Pathways");
try {
openPathwayXref(x, rev, tmpDir);
} catch (Exception e) {
Expand Down Expand Up @@ -425,7 +425,7 @@ protected void openPathwayXref(Xref x, int rev,
PathwayPanel p = new PathwayPanel(WikiPathwaysClientPlugin.this,
wsp, tmpDir, xref);
JDialog d = new JDialog(desktop.getFrame(),
"Related Pathways from WikiPathways", false);
"Pathways Containing "+x, false);

d.getContentPane().add(p);
d.pack();
Expand Down

0 comments on commit bbccfb0

Please sign in to comment.