diff --git a/extras_explorerjs.js b/extras_explorerjs.js
index 9fe1e3d58a38d629274f9e43ff9fd294b1e750eb..65d6d3ec2cc6b9894047a2229a989df63fc0e17a 100755
--- a/extras_explorerjs.js
+++ b/extras_explorerjs.js
@@ -475,6 +475,7 @@ function circleTrackMouse(e) {
             ctx.closePath();
             ctx.fill();
             ctx.stroke();
+            ctx.globalAlpha = 1
         // });
     }
 }
diff --git a/tinawebJS/Tinaweb.js b/tinawebJS/Tinaweb.js
index 0ec2a65a4bf01caa87081db02df65bbf1e0c6bf3..aeaa29ed0defb4012a83b437bbc3ddcc448fefc2 100644
--- a/tinawebJS/Tinaweb.js
+++ b/tinawebJS/Tinaweb.js
@@ -247,7 +247,7 @@ function SelectionEngine() {
 
         TW.partialGraph.render();
 
-        updateLeftPanel_fix( selections , oppos );
+        updateLeftPanel( selections , oppos );
 
         for(var n in neighsDict)
             delete neighsDict[n]
diff --git a/tinawebJS/methods.js b/tinawebJS/methods.js
index 85292104725b252e4ab4b4019aaac727cac4287c..9c328464f5df72a0e7bf2390c88355cc8d4fd73d 100755
--- a/tinawebJS/methods.js
+++ b/tinawebJS/methods.js
@@ -44,6 +44,7 @@ function cancelSelection (fromTagCloud) {
         $("#information").html("");
         $("#searchinput").val("");
         $("#unselectbutton").hide();
+        $("#lefttopbox").hide();
         $("#tips").html(getTips());
     }
 
@@ -356,8 +357,7 @@ function htmlfied_tagcloud(elems , limit) {
 
 //missing: getTopPapers for both node types
 //considering complete graphs case! <= maybe i should mv it
-function updateLeftPanel_fix( sels , oppos ) {
-    console.log("updateLeftPanel() corrected version** ")
+function updateLeftPanel( sels , oppos ) {
     var namesDIV=''
     var alterNodesDIV=''
     var informationDIV=''
@@ -405,6 +405,7 @@ function updateLeftPanel_fix( sels , oppos ) {
     // and im commenting now because github is not
     // pushing my commit
     // because i need more lines, idk
+    $("#lefttopbox").show();
     $("#names").html(namesDIV).readmore({maxHeight:100});
     $("#tab-container").show();
     $("#opossiteNodes").html(alterNodesDIV).readmore({maxHeight:200});