From 315db9008bbef2b36f9360d939aa6931db6640c9 Mon Sep 17 00:00:00 2001 From: Lee <irina.lee@etu.upmc.fr> Date: Sat, 28 Jul 2018 15:02:18 +0200 Subject: [PATCH] fixed error (eln) --- src/main/java/ui/eln/ELNModule.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/ui/eln/ELNModule.java b/src/main/java/ui/eln/ELNModule.java index 08f9c1895b..252667802a 100644 --- a/src/main/java/ui/eln/ELNModule.java +++ b/src/main/java/ui/eln/ELNModule.java @@ -90,7 +90,7 @@ public class ELNModule extends TGCScalableWithInternalComponent implements Swall removable = true; userResizable = true; - value = tdp.findELNComponentName("Module_"); + value = tdp.findELNComponentName("Module"); } public void internalDrawing(Graphics g) { @@ -100,7 +100,7 @@ public class ELNModule extends TGCScalableWithInternalComponent implements Swall MainGUI mgui = getTDiagramPanel().getMainGUI(); if (myColor == null) { - myColor = Color.white; + myColor = Color.lightGray; } if (this.rescaled && !this.tdp.isScaled()) { -- GitLab