Strange Behavior with RapaGUI (unless @REQUIRE "polybios" is used)

Report any Hollywood bugs here
Post Reply
PEB
Posts: 569
Joined: Sun Feb 21, 2010 1:28 am

Strange Behavior with RapaGUI (unless @REQUIRE "polybios" is used)

Post by PEB »

This bug shows up when RapaGUI is used on OS4 (and possibly other systems too).
With this code, the display does not open:

Code: Select all

@REQUIRE "RapaGUI"
@DISPLAY {Color=#WHITE, Width=600, Height=1920, Layers=True, ScaleMode=#SCALEMODE_LAYER, SmoothScale=True, FitScale=True, KeepProportions=True, Hidden=False}
However, the display will open if @REQUIRE "polybios" is added:

Code: Select all

@REQUIRE "RapaGUI"
@REQUIRE "polybios"
@DISPLAY {Color=#WHITE, Width=600, Height=1920, Layers=True, ScaleMode=#SCALEMODE_LAYER, SmoothScale=True, FitScale=True, KeepProportions=True, Hidden=False}
AUserLG
Posts: 16
Joined: Sun Feb 14, 2010 11:26 pm
Location: Ottendorf-Okrilla / Germany

Re: Strange Behavior with RapaGUI (unless @REQUIRE "polybios" is used)

Post by AUserLG »

Try to change the order of the plug-ins.

Code: Select all

...
@REQUIRE "polybios"
@REQUIRE "RapaGUI"
@DISPLAY {Color=#WHITE, Width=600, Height=1920, Layers=True, ScaleMode=#SCALEMODE_LAYER, SmoothScale=True, FitScale=True, KeepProportions=True, Hidden=False}
...
Post Reply