diff options
author | rrsr28 | 2023-06-13 17:12:27 +0530 |
---|---|---|
committer | rrsr28 | 2023-06-13 17:12:27 +0530 |
commit | 30075f3443f1759d8d5b9631c58e004d11035871 (patch) | |
tree | 42dc23555bd72f4250ba80c44435a30d4045e0fa /src/main | |
parent | f00e75ba29168d4b9b7fff91700c2e7cfc31b8b7 (diff) | |
download | Chemical-PFD-30075f3443f1759d8d5b9631c58e004d11035871.tar.gz Chemical-PFD-30075f3443f1759d8d5b9631c58e004d11035871.tar.bz2 Chemical-PFD-30075f3443f1759d8d5b9631c58e004d11035871.zip |
Modified the Grips for OneCellFiredHeater
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/python/shapes/shapes.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/python/shapes/shapes.py b/src/main/python/shapes/shapes.py index d9f6b52..2237a05 100644 --- a/src/main/python/shapes/shapes.py +++ b/src/main/python/shapes/shapes.py @@ -1095,11 +1095,11 @@ class OneCellFiredHeaterFurnace(NodeItem): super(OneCellFiredHeaterFurnace, self).__init__("svg/Furnaces and Boilers/One Cell Fired Heater, Furnace") self.grips = [ [50, 100, "top"], - [0-7, 25, "left", 50], + [0, 28, "left", 45], [25, 87.5, "left", 25], - [100+7, 25, "right", 50], + [100, 28, "right", 45], [75, 87.5, "right", 25], - [50, 0-10, "bottom", 100] + [50, 0-5, "bottom", 100] ] |