Kbase P36714: Window height cannot be smaller than 10.14
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  8/12/2003 |
|
Status: Unverified
FACT(s) (Environment):
Dynamics 2.0A
SYMPTOM(s):
Window height cannot be smaller than 10.14
CAUSE:
The explanation is in src/icf/app/rydynwindp.p/getSessionMinWindowHeight.
The default minimum height for a normal window is hard coded to 10.14.
FIX:
Make an override of getSessionMinWindowHeight in the super procedure of the container like the following:
RETURNS DECIMAL
(plMenuController AS LOG) :
/*------------------------------------------------------------------------------
Purpose:
Notes:
------------------------------------------------------------------------------*/
RETURN 2. /* guess that 2 is small enough */
END FUNCTION.