Prevent close
Opened this issue · 3 comments
akeva001 commented
Is it possible to prevent the panel from completely closing?
lucksp commented
I am researching this now since there are too many issues with the library of the panel disappearing and then no longer being able to get the view back without quitting the application; which is obviously horrible UX.
Video:
RPReplay_Final1673564842.mov
raheelshan commented
I have achieved it like this
const closePanel = () => { setIsPanelActive(false); setTimeout(() => { openPanel(); }, 0) };