[PR #11383] [IslandWindow.cpp] Avoid double-fetching dropdownDuration #28541

Open
opened 2026-01-31 09:29:11 +00:00 by claunia · 0 comments
Owner

Original Pull Request: https://github.com/microsoft/terminal/pull/11383

State: closed
Merged: Yes


Summary of the Pull Request

The code saved args.DropdownDuration() to a local and then called the function again, instead of using the local.
Changed to use the local.

PR Checklist

  • Closes #xxx
  • CLA signed
  • Tests added/passed
  • Documentation updated
  • Schema updated.
  • I've discussed this with core contributors already. If not checked, I'm ready to accept this work might be rejected in favor of a different grand plan.

Detailed Description of the Pull Request / Additional comments

I think this getter simply accesses a member on args, it doesn't parse the settings or anything, so compiler optimizes it, but seemed to make more sense to use the local.

**Original Pull Request:** https://github.com/microsoft/terminal/pull/11383 **State:** closed **Merged:** Yes --- ## Summary of the Pull Request The code saved `args.DropdownDuration()` to a local and then called the function again, instead of using the local. Changed to use the local. ## PR Checklist * [ ] Closes #xxx * [x] CLA signed * [ ] Tests added/passed * [ ] Documentation updated * [ ] Schema updated. * [ ] I've discussed this with core contributors already. If not checked, I'm ready to accept this work might be rejected in favor of a different grand plan. ## Detailed Description of the Pull Request / Additional comments I think this getter simply accesses a member on `args`, it doesn't parse the settings or anything, so compiler optimizes it, but seemed to make more sense to use the local.
claunia added the pull-request label 2026-01-31 09:29:11 +00:00
Sign in to join this conversation.
No Label pull-request
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/terminal#28541