-
Notifications
You must be signed in to change notification settings - Fork 62
full page scrreenshot enhancement vrt #4492
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -181,7 +181,7 @@ public bool IsFullPageScreenshot | |
| { | ||
| get | ||
| { | ||
| bool value = true; | ||
| bool value = false; | ||
| bool.TryParse(GetOrCreateInputParam(nameof(IsFullPageScreenshot), value.ToString()).Value, out value); | ||
| return value; | ||
|
Comment on lines
+184
to
186
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Silent behavioral regression for pre-existing actions lacking a stored Changing the in-memory default from If the property was newly introduced in an earlier PR and users could have run actions that persisted Consider checking whether a migration note or one-time upgrade path is needed, or assert in release notes that the new default is intentionally 🤖 Prompt for AI Agents |
||
| } | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧹 Nitpick | 🔵 Trivial | ⚡ Quick win
Add
Visibility="Collapsed"as the XAML default for the new controls.Neither
xFullPageScreenshotLabelnorxFullPageScreenshotCheckboxdeclares an initialVisibility. WPF defaults both toVisible, so they are briefly shown untilInitLayout()runs in the constructor and collapses them for the defaultTrackaction state. Adding the attribute eliminates any possible visual flicker and makes the intent explicit, consistent with how other conditionally-shown rows behave in this page.🛡️ Proposed fix
🤖 Prompt for AI Agents