This commit is contained in:
2026-05-10 09:58:05 -04:00
parent 41248cff36
commit b87e55c10f
2 changed files with 3 additions and 4 deletions

3
qt.py
View File

@@ -1727,7 +1727,7 @@ class WillSettingsWidget(QWidget):
alarm_start = BalCalendar.format_time(threshold)
days_difference = (locktime - threshold).days
heirs_details = "\n".join(f"{heir} - {self.bal_window.heirs[heir][0]}, {self.bal_window.heirs[heir][1]}" for heir in self.bal_window.heirs)
heirs_details = "\r\n".join(f" {heir} - {self.bal_window.heirs[heir][0]}, {self.bal_window.heirs[heir][1]}" for heir in self.bal_window.heirs)
event_description = BalCalendar.ical_escape(
f"{self.bal_window.bal_plugin.EVENT_DESCRIPTION.get()}".replace("$wallet_name",str(self.bal_window.wallet)).replace("$heirs_complete",heirs_details)
)
@@ -4051,7 +4051,6 @@ class BalCalendar:
text.replace("\\", "\\\\")
.replace(";", r"\;")
.replace(",", r"\,")
.replace("\n", r"\n")
)
return BalCalendar.fold_ical_line(text)