Skip to content

Commit

Permalink
Bookmarks: Fix group selection when we add new group
Browse files Browse the repository at this point in the history
(reference #30)
  • Loading branch information
piotrzarzycki21 committed Aug 10, 2023
1 parent 4038d5f commit 62f886b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ package mediator
for (var j:int = 0; j < bookmarkGroup.subMenu.length; j++)
{
var subBookmarkNav:NavigationLinkVO = bookmarkGroup.subMenu.getItemAt(j) as NavigationLinkVO;
if (subBookmarkNav.name == subBookmarkNav.data.name)
if (group == subBookmarkNav.data.name)
{
bookmarkGroup.selectedChild = subBookmarkNav;
break;
Expand Down

0 comments on commit 62f886b

Please sign in to comment.