Fix country combo box sizing in tenant wizard
Table of Contents
This page is a capture in the discarded bucket of the product backlog.
Resolved (deep backlog refinement, 2026-07-11): projects/ores.qt/api/include/ores.qt/WidgetUtils.hpp:133-138 defines setupComboBoxes() which calls combo->setMaxVisibleItems(10) and installs a BoundedListView on every QComboBox found in a widget; TenantProvisioningWizard.cpp calls WidgetUtils::setupComboBoxes(this) at lines 76, 123, 240, and 458, covering the country combo box page – the exact fix (bounded max-height dropdown) requested is already implemented.
What
(One paragraph: the idea.)
Why
(Motivation, problem being solved, related context.)
References
See also
The country combo box in the tenant wizard (and possibly other wizard pages) expands to fill the full dialog height, pushing other fields off-screen. The combo's list popup should be bounded to a sensible maximum height (e.g. 300px). Set QComboBox::setMaxVisibleItems or apply a style sheet max-height to the drop-down view.