From 1500c1cc331b3882ae3e78138915e6fe7df84dea Mon Sep 17 00:00:00 2001 From: Roy Nieterau Date: Thu, 22 May 2025 23:12:52 +0200 Subject: [PATCH] Remove redundant stylesheet overrides --- client/ayon_core/tools/publisher/window.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/client/ayon_core/tools/publisher/window.py b/client/ayon_core/tools/publisher/window.py index 4932b578e2..6c856d8c3a 100644 --- a/client/ayon_core/tools/publisher/window.py +++ b/client/ayon_core/tools/publisher/window.py @@ -856,11 +856,7 @@ class PublisherWindow(QtWidgets.QDialog): def _invalidate_comment_field(self): self._comment_invalid_timer.start() - self._comment_input.setStyleSheet( - "border-style: solid;" - "border-width: 1px;" - "border-color: #DD2020" - ) + self._comment_input.setStyleSheet("border-color: #DD2020") # Set focus so user can start typing and is pointed towards the field self._comment_input.setFocus()