Changeset 10659 in josm for trunk/src/org/openstreetmap/josm/gui/layer
- Timestamp:
- 2016-07-27T02:48:44+02:00 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/layer/gpx/GpxDrawHelper.java
r10303 r10659 482 482 } 483 483 Color customColoringTransparent = hdopAlpha < 0 ? trkPnt.customColoring : 484 new Color(trkPnt.customColoring.getRGB() & 0x00ffffff |hdopAlpha << 24, true);484 new Color((trkPnt.customColoring.getRGB() & 0x00ffffff) | (hdopAlpha << 24), true); 485 485 g.setColor(customColoringTransparent); 486 486 // hdop circles … … 494 494 if (trkPnt.customColoring != null) { 495 495 Color customColoringTransparent = largePointAlpha < 0 ? trkPnt.customColoring : 496 new Color(trkPnt.customColoring.getRGB() & 0x00ffffff |largePointAlpha << 24, true);496 new Color((trkPnt.customColoring.getRGB() & 0x00ffffff) | (largePointAlpha << 24), true); 497 497 498 498 g.setColor(customColoringTransparent);
Note:
See TracChangeset
for help on using the changeset viewer.