From 05cb7a3455e14c937d13f761d91b76f963d87222 Mon Sep 17 00:00:00 2001 From: tcofoegbu Date: Thu, 23 Mar 2017 12:02:33 +0000 Subject: [PATCH] JAL-2463 bugfix --- src/jalview/ext/jmol/JmolCommands.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/jalview/ext/jmol/JmolCommands.java b/src/jalview/ext/jmol/JmolCommands.java index a809cae..75b702a 100644 --- a/src/jalview/ext/jmol/JmolCommands.java +++ b/src/jalview/ext/jmol/JmolCommands.java @@ -113,8 +113,7 @@ public class JmolCommands col = Color.GRAY; } - String newSelcom = (mapping[m].getChain() != " " ? ":" - + mapping[m].getChain() : "") + String newSelcom = ":" + mapping[m].getChain() + "/" + (pdbfnum + 1) + ".1" -- 1.7.10.2