Skip to content

Use recursion=False on form prompt_save #42

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 3, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pysimplesql/pysimplesql.py
Original file line number Diff line number Diff line change
Expand Up @@ -1739,7 +1739,7 @@ def prompt_save(self, autosave=False) -> int:
if self[q]._prompt_save is False:
continue

if self[q].records_changed():
if self[q].records_changed(recursive=False): # don't check children
# we will only show the popup once, regardless of how many queries have changed
if not user_prompted:
user_prompted = True
Expand Down