> From: A.Sloman@cs.bham.ac.uk
>
> Running Solaris SPARC motif poplog V14.5 with the command
>
> pop11 %x
>
> and then selecting the HELP button on the control panel produces a tiny
> window with list of files. It has to be expanded by hand to be of any
> use.
>
> Is there some resource that can be set in .Xdefaults (or better an
> assignment in init.p) that makes it come up with a usable size?
It's a bug in LIB * S-poplog_uiS-helptool_xm.p. Change:
XtCreatePopupShell('helptool', xtTopLevelShellWidget,
refer_widget,
XptArgList([{allowShellResize ^true}
{deleteResponse ^XmUNMAP}
;;;{width 200} {height 200}
])) -> helptool_widget;
to
XtCreatePopupShell('helptool', xtTopLevelShellWidget,
refer_widget,
XptArgList([{allowShellResize ^true}
{deleteResponse ^XmUNMAP}
])) -> helptool_widget;
removing the explicit setting of the width/height resources. Rebuild and
(fingers crossed) everything should be ok).
This has been fixed in later versions of Poplog.
Adrian
|