You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Tomas,
Would it be possible to add a location override for the pop up?
This is my use case:
I am using the PopOver from controlsFX, and I like the detachable feature. So, I would like to be able to do something like this:
-If the popover is detached.. then only update content inside.. but not the position. So in this case, override the position and keep it to last moved location. So something like..
PopOver popOver = new PopOver();
richTextArea.setPopupAtCaret(popOver);
if(popOver.isDetached()){
richTextArea.setPopUpAutoLayout(false);
}
else{
richTextArea.setPopUpAutoLayout(true);
}
-If it is not detached, then update the content as well as the position. This is the default current situation.
What do you think?
Best,
Maher
The text was updated successfully, but these errors were encountered:
Hi Tomas,
Would it be possible to add a location override for the pop up?
This is my use case:
I am using the PopOver from controlsFX, and I like the detachable feature. So, I would like to be able to do something like this:
-If the popover is detached.. then only update content inside.. but not the position. So in this case, override the position and keep it to last moved location. So something like..
PopOver popOver = new PopOver();
richTextArea.setPopupAtCaret(popOver);
if(popOver.isDetached()){
richTextArea.setPopUpAutoLayout(false);
}
else{
richTextArea.setPopUpAutoLayout(true);
}
-If it is not detached, then update the content as well as the position. This is the default current situation.
What do you think?
Best,
Maher
The text was updated successfully, but these errors were encountered: