From b62518875f407b7b361d2cb4a5e6115075c869af Mon Sep 17 00:00:00 2001 From: Roland W-H Date: Mon, 10 Feb 2025 23:28:11 +0000 Subject: [PATCH] fix autofill debug flag --- src/platform_edit.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/platform_edit.py b/src/platform_edit.py index 2e51309..fda14dd 100644 --- a/src/platform_edit.py +++ b/src/platform_edit.py @@ -27,6 +27,8 @@ class PlatformEdit(QWidget): self.share_deal_reduce_amount = 0.0 # Debugging feature: set with "--DEBUG_AUTOFILL" cmd argument self.autofill = autofill + if autofill: + self.save_but.setEnabled(True) # Create main window object, passing this instance as param self.main_win = main_window.SIPPCompare(self)