diff options
author | Blaine | 2020-06-16 20:05:42 +0530 |
---|---|---|
committer | Blaine | 2020-06-16 20:05:42 +0530 |
commit | 53705bc5d938fcefceb9a3419cae0436dd5f3952 (patch) | |
tree | c3e4203f9258782e8a85fe24ff0a2b68bfd70552 /src/main/python/utils/canvas.py | |
parent | fbed3e0592b409cf9198bcdd99feb0e568e1251a (diff) | |
download | Chemical-PFD-53705bc5d938fcefceb9a3419cae0436dd5f3952.tar.gz Chemical-PFD-53705bc5d938fcefceb9a3419cae0436dd5f3952.tar.bz2 Chemical-PFD-53705bc5d938fcefceb9a3419cae0436dd5f3952.zip |
line only + move rect behaviour
Diffstat (limited to 'src/main/python/utils/canvas.py')
-rw-r--r-- | src/main/python/utils/canvas.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/python/utils/canvas.py b/src/main/python/utils/canvas.py index 4c348bc..5bd720b 100644 --- a/src/main/python/utils/canvas.py +++ b/src/main/python/utils/canvas.py @@ -101,7 +101,7 @@ class canvas(customView): @property def labelItems(self): for i in self.items: - if isinstance(i, (shapes.ItemLabel, shapes.LineLabel)): + if isinstance(i, shapes.LineLabel): yield i @property def canvasSize(self): |