Changeset 679
- Timestamp:
- 06/22/06 14:47:51 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/lib/OpenLayers/Control/MouseToolbar.js
r657 r679 171 171 if (mode != this.mode) { 172 172 if (this.mode) { 173 this.buttons[this.mode].firstChild.src = this.buttons[this.mode].imgLocation;173 OpenLayers.Util.modifyAlphaImageDiv(this.buttons[this.mode], null, null, null, this.buttons[this.mode].imgLocation); 174 174 } 175 175 if (this.mode == "measure" && mode != "measure") { … … 183 183 } 184 184 this.mode = mode; 185 this.buttons[mode].firstChild.src = this.buttons[mode].activeImgLocation;185 OpenLayers.Util.modifyAlphaImageDiv(this.buttons[mode], null, null, null, this.buttons[mode].activeImgLocation); 186 186 } 187 187 },
