diff --git a/js/sudoku.js b/js/sudoku.js
index e437aaa..0c210cd 100755
--- a/js/sudoku.js
+++ b/js/sudoku.js
@@ -231,8 +231,11 @@ function enableRadio() {
         } else {
             radio.disabled = true
             radio.label.title = `Tous les ${radio.value} sont posés.`
-            if (valueToInsert == radio.value)
+            if (valueToInsert == radio.value) {
+                insertRadio0.checked = true
                 valueToInsert = ""
+                grid.style.cursor = "text"
+            }
         }
     }
 }