diff --git a/src/java/com/threerings/jme/effect/WindowSlider.java b/src/java/com/threerings/jme/effect/WindowSlider.java index 7d3103b1f..65b62fc58 100644 --- a/src/java/com/threerings/jme/effect/WindowSlider.java +++ b/src/java/com/threerings/jme/effect/WindowSlider.java @@ -60,10 +60,6 @@ public class WindowSlider extends Node _mode = mode; _window = window; _tfunc = new LinearTimeFunction(start, end, duration); - - // skip two frames by default as that generally handles the normal - // window layout process - _skipTicks = 2; } /** @@ -107,7 +103,11 @@ public class WindowSlider extends Node getParent().detachChild(this); } - protected int _mode, _skipTicks; + protected int _mode; protected BWindow _window; protected TimeFunction _tfunc; + + // skip two frames by default as that generally handles the normal window + // layout process + protected int _skipTicks = 2; }