Skip to content

Commit

Permalink
Merge branch 'add_settings_menu' of github.com:python357-1/TagStudio …
Browse files Browse the repository at this point in the history
…into add_settings_menu
  • Loading branch information
python357-1 committed Jan 13, 2025
2 parents 9e4ae27 + 4148e36 commit 0607843
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tagstudio/src/qt/translations.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ def value(self) -> str:

@value.setter
def value(self, value: str):
if self.__value != value and value is not None:
if self.__value != value:
self.__value = value
self.changed.emit(self.__value)
self.changed.emit(self.value)


class Translator:
Expand Down

0 comments on commit 0607843

Please sign in to comment.