-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Add expand / collapse support to TreeView #7411
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
f383e38
3482e12
33b4588
18af32e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,3 +3,17 @@ if (BUILD_GUI) | |
| rendering/MaterialModifier.cpp | ||
| ) | ||
| endif() | ||
|
|
||
|
|
||
| add_executable(TreeViewTest | ||
| TreeViewTest.cpp | ||
| ) | ||
|
Comment on lines
+8
to
+10
|
||
|
|
||
| target_link_libraries(TreeViewTest | ||
| PRIVATE | ||
| Open3D::Open3D | ||
| ) | ||
|
|
||
| set_target_properties(TreeViewTest PROPERTIES | ||
| RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin | ||
| ) | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Commented-out
Invalidate()call should either be removed or uncommented with explanation. If invalidation is needed for proper UI updates after expansion, this should be active. If not needed, the comment should be removed to avoid confusion.