Changeset 70453 in vbox
- Timestamp:
- Jan 3, 2018 6:12:38 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 120059
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser/UIGChooserModel.cpp
r70452 r70453 355 355 /* 356 356 * Take the focus item (if any) as a starting point and find 357 * the closest non-selected item 357 * the closest non-selected item. 358 358 */ 359 359 UIGChooserItem *pItem = focusItem(); … … 364 364 int idxBefore = navigationList().indexOf(pItem) - 1; 365 365 int idxAfter = idxBefore + 2; 366 while (idxBefore >= 0 || idxAfter < navigationList().size())366 while (idxBefore >= 0 || idxAfter < navigationList().size()) 367 367 { 368 368 if (idxBefore >= 0)
Note:
See TracChangeset
for help on using the changeset viewer.