Comment 4 for bug 1498039

Revision history for this message
Tyr Johanson (tyr-6) wrote :

context_selection.py show_project_list() uses DROPDOWN_MAX_ITEMS to slice off any additional project beyond the max (default 30).

Instead, consider removing the use of max_proj and instead show all projects and change the dropdown-menu CSS to something like

.dropdown-menu {
    max-height: 400px;
    overflow: hidden;
    overflow-y: auto;
}

See also: http://eichefam.net/2012/04/12/scrollable-menus-in-bootstrap/