From ddd671f384140aac6cdef48ee22afc3b89cc4289 Mon Sep 17 00:00:00 2001 From: hneemann Date: Tue, 28 Mar 2017 21:14:25 +0200 Subject: [PATCH] Simplification of event handling. --- .../java/de/neemann/digital/draw/library/ElementLibrary.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/de/neemann/digital/draw/library/ElementLibrary.java b/src/main/java/de/neemann/digital/draw/library/ElementLibrary.java index 62717b004..62daa7fc4 100644 --- a/src/main/java/de/neemann/digital/draw/library/ElementLibrary.java +++ b/src/main/java/de/neemann/digital/draw/library/ElementLibrary.java @@ -44,8 +44,8 @@ import java.util.Iterator; * This import works in two steps: At first all the files in the same directory as the root circuit are loaded. * The file names are shown in the components menu. From there you can pick a file to insert it to the circuit. * When a file is selected it is loaded to the library. After that also an icon is available. - * This is done because the creation of an icon is very time consuming and should be avoided if not necessary. - * Its a kind of lazy loading. + * This is done because the loading of a circuit creation of an icon is very time consuming and should be avoided if + * not necessary. Its a kind of lazy loading. * * @author hneemann */