Added invert widget

This commit is contained in:
2025-08-01 14:54:29 +02:00
parent 679b47262a
commit af4371ebe4
8 changed files with 121 additions and 10 deletions

View File

@ -9,6 +9,7 @@ if TYPE_CHECKING:
class BaseWidget:
name: str = "BaseWidget"
register: bool = False
def __init__(self, manager: "EditorManager", logger: logging.Logger):
self.manager = manager