diff options
author | rrsr28 | 2023-06-13 16:31:10 +0530 |
---|---|---|
committer | rrsr28 | 2023-06-13 16:31:10 +0530 |
commit | 65b2ba36219785f7ca5270b67496b4b08b1aa22c (patch) | |
tree | 5daa0325f0d0b3ae42227d8c39ced0710bc849ee /src/main/python/shapes | |
parent | 6a949fca57bdb737cfbc21be98c23797977ba4e2 (diff) | |
download | Chemical-PFD-65b2ba36219785f7ca5270b67496b4b08b1aa22c.tar.gz Chemical-PFD-65b2ba36219785f7ca5270b67496b4b08b1aa22c.tar.bz2 Chemical-PFD-65b2ba36219785f7ca5270b67496b4b08b1aa22c.zip |
Fixed file path case
Diffstat (limited to 'src/main/python/shapes')
-rw-r--r-- | src/main/python/shapes/shapes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/python/shapes/shapes.py b/src/main/python/shapes/shapes.py index a67e8dc..dc3cf6a 100644 --- a/src/main/python/shapes/shapes.py +++ b/src/main/python/shapes/shapes.py @@ -767,7 +767,7 @@ class NodeItem(QGraphicsSvgItem): class InflowLine(NodeItem): def __init__(self): - super(InflowLine, self).__init__("svg/piping/Inflow Line") + super(InflowLine, self).__init__("svg/Piping/Inflow Line") self.grips = [ [100, 50, "right"] ] |