Skip to content

Commit

Permalink
Allow orthogonal override
Browse files Browse the repository at this point in the history
  • Loading branch information
amolenaar committed Mar 28, 2023
1 parent 22c18b3 commit 776ea41
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gaphas/item.py
Expand Up @@ -293,7 +293,7 @@ def update_orthogonal_constraints(self) -> None:
self._connections.remove_constraint(self, c)
del self._orthogonal_constraints[:]

if not self._orthogonal or len(self._handles) < 3:
if not self.orthogonal or len(self._handles) < 3:
return

add = self._connections.add_constraint
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "gaphas"
version = "3.10.0"
version = "3.10.1"
description="Gaphas is a GTK+ based diagramming widget"
authors = [
"Arjan J. Molenaar <gaphor@gmail.com>",
Expand Down

0 comments on commit 776ea41

Please sign in to comment.