diff --git a/CHANGELOG.md b/CHANGELOG.md
index c43a9f7..dc33476 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
+### Changed
+
+- Improve edit control icons to make them clearer and more intuitive #179 (ref: #146 #152)
+
+### Fixed
+
+- Fix remaining edit control icons to allow them to better follow the page color scheme #179
+
## [v2.0.5] - 2022-08-29
### Changed
diff --git a/src/control/Edit/Edit.js b/src/control/Edit/Edit.js
index a1b5086..2281984 100644
--- a/src/control/Edit/Edit.js
+++ b/src/control/Edit/Edit.js
@@ -65,14 +65,14 @@ class Edit extends Control {
const buttons = [
{
name: 'polygon',
- label: '',
+ label: '',
tooltip: 'Draw a Polygon',
draw: 'Polygon',
element: drawButtonsDiv,
},
{
name: 'line',
- label: '',
+ label: '',
tooltip: 'Draw a Line',
draw: 'LineString',
element: drawButtonsDiv,
@@ -86,26 +86,26 @@ class Edit extends Control {
},
{
name: 'circle',
- label: '',
+ label: '',
tooltip: 'Draw a Circle',
draw: 'Circle',
element: drawButtonsDiv,
},
{
name: 'modify',
- label: '',
+ label: '',
tooltip: 'Modify features',
element: actionButtonsDiv,
},
{
name: 'move',
- label: '',
+ label: '',
tooltip: 'Move features',
element: actionButtonsDiv,
},
{
name: 'delete',
- label: '',
+ label: '',
tooltip: 'Delete selected feature',
visible: false,
element: actionButtonsDiv,