Skip to content

Commit

Permalink
<>[]: <Simple Fix 🚸 >
Browse files Browse the repository at this point in the history
[
Kind of annoying
]

[#555]
  • Loading branch information
hasii2011 committed Dec 23, 2024
1 parent 6b006b6 commit dd4b1cc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ See [documentation](https://github.com/hasii2011/PyUt/wiki)

_Some Updates_

* Improved UML sequence diagram creation
* Mermaid Support
* Better support for importing Python code
* Better support for orthogonal lines
Expand Down Expand Up @@ -57,7 +58,7 @@ This project uses [buildlackey](https://github.com/hasii2011/buildlackey) for da

___

Updated and modified by <a href="mailto:[email protected]@gmail.com?subject=Hello Humberto">Humberto A. Sanchez II</a> (C) 2023
Updated and modified by <a href="mailto:[email protected]@gmail.com?subject=Hello Humberto">Humberto A. Sanchez II</a> (C) 2025

---

Expand Down
3 changes: 2 additions & 1 deletion pyut/ui/EditObjectHandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
from ogl.OglAssociation import OglAssociation
from ogl.OglInterface import OglInterface
from ogl.OglInterface2 import OglInterface2
from ogl.OglNoteLink import OglNoteLink
from ogl.OglObject import OglObject

from pyut.ui.wxcommands.CommandModify import CommandModify
Expand Down Expand Up @@ -119,7 +120,7 @@ def _doEditObject(self, x: int, y: int, umlFrame: UmlDiagramsFrame):
self._editSDInstanceName(umlFrame, diagramShape)
case OglSDMessage() as diagramShape:
self._editSDMessage(umlFrame, diagramShape)
case OglInheritance() | OglInterface() | AnchorPoint() | ControlPoint() | SizerShape() | TextShape():
case OglInheritance() | OglNoteLink() | OglInterface() | AnchorPoint() | ControlPoint() | SizerShape() | TextShape():
pass # Nothing to edit on inheritance or interface relationships
case _:
self.logger.error(f'Unknown shape')
Expand Down

0 comments on commit dd4b1cc

Please sign in to comment.