summaryrefslogtreecommitdiff
path: root/src/main/python
diff options
context:
space:
mode:
authorrrsr282023-06-13 16:31:10 +0530
committerrrsr282023-06-13 16:31:10 +0530
commit65b2ba36219785f7ca5270b67496b4b08b1aa22c (patch)
tree5daa0325f0d0b3ae42227d8c39ced0710bc849ee /src/main/python
parent6a949fca57bdb737cfbc21be98c23797977ba4e2 (diff)
downloadChemical-PFD-65b2ba36219785f7ca5270b67496b4b08b1aa22c.tar.gz
Chemical-PFD-65b2ba36219785f7ca5270b67496b4b08b1aa22c.tar.bz2
Chemical-PFD-65b2ba36219785f7ca5270b67496b4b08b1aa22c.zip
Fixed file path case
Diffstat (limited to 'src/main/python')
-rw-r--r--src/main/python/shapes/shapes.py2
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"]
]