This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Introjucer: clicking already-selected items in the treeview now opens their document.
tags/2021-05-28
jules
11 years ago
parent
eb8bfa1471
commit
e9549f6d00
1 changed files
with
4 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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() {}
Write
Preview
Loading…
Cancel
Save