This commit is contained in:
2026-05-09 09:28:00 -04:00
parent b27df92bc3
commit a5b4ee3a31

5
qt.py
View File

@@ -1758,7 +1758,7 @@ class WillSettingsWidget(QWidget):
_logger.info(f"File opened with default app: {temp_path}")
else:
export_meta_gui(
self.bal_window.window, f"{self.bal_window.wallet}_event.csv", BalCalendar.save_to_cwd
self.bal_window.window, f"will_event.csv", BalCalendar.save_to_cwd
)
def on_locktime_change(self):
@@ -4002,6 +4002,9 @@ class BalCalendar:
subprocess.check_call([calendar_app, path])
return True
except Exception as _e:
try:
os.startfile(path)
except:
return False
@staticmethod