Skip to content

Commit 6584066

Browse files
author
Zach Glueckert
committed
Fix uninitialized dragEnabled default to true.
1 parent f67dee9 commit 6584066

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gov/nasa/worldwind/render/PointPlacemark.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ public Vec4 getTerrainPoint()
189189
protected WWTexture activeTexture; // determined each frame
190190

191191
protected boolean highlighted;
192-
protected boolean dragEnabled;
192+
protected boolean dragEnabled = true;
193193
protected DraggableSupport draggableSupport = null;
194194
protected boolean visible = true;
195195
protected int altitudeMode = WorldWind.CLAMP_TO_GROUND;

0 commit comments

Comments
 (0)