diff --git a/CHANGELOG.md b/CHANGELOG.md
index e46f86f..1f22f7c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,6 @@
# Changelog
+- [24-12-15] Fixed Button focus policy in the bandmap window.
- [24-12-14] Changed method of detecting fldigi QSOs. See docs.
- [24-12-12] Add a try exception for a unicode decode error.
- [24-12-11-1] Add RTC to RAC Canada Day, ARRL VHF, ARRL Field Day, ARRL SS, ARRL DX, 10 10
diff --git a/README.md b/README.md
index 16736e8..f0bd0a6 100644
--- a/README.md
+++ b/README.md
@@ -208,6 +208,7 @@ generated, 'cause I'm lazy, list of those who've submitted PR's.
## Recent Changes (Polishing the Turd)
+- [24-12-15] Fixed Button focus policy in the bandmap window.
- [24-12-14] Changed method of detecting fldigi QSOs. See docs.
- [24-12-12] Add a try exception for a unicode decode error.
- [24-12-11-1] Add RTC to RAC Canada Day, ARRL VHF, ARRL Field Day, ARRL SS, ARRL DX, 10 10
diff --git a/not1mm/data/bandmap.ui b/not1mm/data/bandmap.ui
index 8a28a66..f546272 100644
--- a/not1mm/data/bandmap.ui
+++ b/not1mm/data/bandmap.ui
@@ -178,6 +178,9 @@
27
+
+ Qt::NoFocus
+
🗑 Marked
diff --git a/not1mm/lib/version.py b/not1mm/lib/version.py
index 1d94a45..4ce5601 100644
--- a/not1mm/lib/version.py
+++ b/not1mm/lib/version.py
@@ -1,3 +1,3 @@
"""It's the version"""
-__version__ = "24.12.14"
+__version__ = "24.12.15"
diff --git a/pyproject.toml b/pyproject.toml
index dd2860b..e82f5ff 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "not1mm"
-version = "24.12.14"
+version = "24.12.15"
description = "NOT1MM Logger"
readme = "README.md"
requires-python = ">=3.9"