Skip to content

Commit

Permalink
fix: 拼接加空格
Browse files Browse the repository at this point in the history
  • Loading branch information
yuhldr committed Nov 28, 2024
1 parent ccc58a4 commit be37c6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lfy/qt/translate.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def translate_text(self, text_from):
text_from = process_text(text_from)

if self.cb_add_old.isChecked():
text_from = self.text_last + text_from
text_from = self.text_last + " " + text_from

if not text_from:
return
Expand Down

0 comments on commit be37c6c

Please sign in to comment.