Browse Source

Introjucer: clicking already-selected items in the treeview now opens their document.

tags/2021-05-28
jules 11 years ago
parent
commit
e9549f6d00
1 changed files with 4 additions and 0 deletions
  1. +4
    -0
      extras/Introjucer/Source/Utility/jucer_JucerTreeViewBase.cpp

+ 4
- 0
extras/Introjucer/Source/Utility/jucer_JucerTreeViewBase.cpp View File

@@ -189,6 +189,10 @@ void JucerTreeViewBase::itemClicked (const MouseEvent& e)
else
showPopupMenu();
}
else if (isSelected())
{
itemSelectionChanged (true);
}
}
void JucerTreeViewBase::deleteItem() {}


Loading…
Cancel
Save