I think I have solved this - it is caused when you click the "Clear"
button on the little number-picker. This adds the digit 0 to the row
object, so it's length when completed is greater than 9, and the game
counts this as an uncompleted game.
A work-around is to use the delete key instead of the number-picker to
remove numbers.
Or you can edit (you'll need to be root) /usr/lib/python2.5/site-
packages/gnome_sudoku/gsudoku.py and at about line 292 change the
function number_changed_cb() like this:
def number_changed_cb (self, ns, w):
w.destroy()
self.set_text_interactive('')
newval=ns.get_value()
if newval:
self.set_text_interactive(str(newval))
I will submit this to bugzilla, so it should flow through to Ubuntu one
day.
--
Sudoku puzzle solved error
https://bugs.launchpad.net/bugs/55954
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
--
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs