Thanks for your help! It seems that from the source code listed below:
Greg Brown wrote:
>
> public java.awt.Window getHostWindow() {
> java.awt.Container parent = displayHost.getParent();
> while (parent != null
> && !(parent instanceof java.awt.Window)) {
> parent = parent.getParent();
> }
>
> if (parent == null) {
> throw new IllegalArgumentException("Window does not have a
> native host.");
> }
>
> return (java.awt.Window)parent;
> }
>
>
That I need to call getParent() off of the display host; Ill try this and
cross my fingers.
Thanks,
Dave
--
View this message in context:
http://apache-pivot-users.399431.n3.nabble.com/Setting-a-minimum-enforced-size-for-the-Display-tp1902028p1917433.html
Sent from the Apache Pivot - Users mailing list archive at Nabble.com.