..

Hide Control Panel (search) From Tree View Popup

문제

tree 뷰 팝업에서 Control Panel(1)과 Action Button(2)을 제거하고 싶었다.

tree 뷰 팝업

해결

팝업을 띄우는 코드에서 flags에 withControlPanelaction_buttons를 False로 설정하면 된다.

'flags': {
    'withControlPanel': False,  # 1
    'action_buttons': False,     # 2
}


없어졌다!

tree 뷰 팝업에 Control Panel 제거