mirror of
https://github.com/hneemann/Digital.git
synced 2025-09-18 01:14:42 -04:00
make sure only a slash is stored in the XML, even on Windows systems.
This commit is contained in:
parent
111f1b1a2f
commit
cc461277c3
@ -261,7 +261,7 @@ public class LibrarySelector implements ElementNotFoundNotification {
|
||||
* @param inputNames the names of the input signals
|
||||
*/
|
||||
public ElementTypeDescriptionCustom(File file, ElementFactory elementFactory, ElementAttributes attributes, PinDescription... inputNames) {
|
||||
super(file.getPath(), elementFactory, inputNames);
|
||||
super(file.getPath().replace('\\', '/'), elementFactory, inputNames);
|
||||
this.file = file;
|
||||
this.attributes = attributes;
|
||||
if (attributes.contains(Keys.DESCRIPTION))
|
||||
|
Loading…
x
Reference in New Issue
Block a user