tksheet icon indicating copy to clipboard operation
tksheet copied to clipboard

self.highlight_cells() affects self.extra_bindings("cell_select", func = self.edit_cell)

Open TheOtherMarcus opened this issue 3 years ago • 1 comments

I have enabled cell editing with

self.extra_bindings("cell_select", func = self.edit_cell)

and edit_cell(() calls

self.create_text_editor(...)

I also highlight the same cell with

self.highlight_cells(row=row, column=1, bg=self.pingBg(typ), redraw=False)

This worked fine in an earlier version I used during the fall 2021. When I updated tksheet to be able to use checkbox() things changed. A click on an highlighted cell usually only marks it and does not open the editor. Only sometimes the editor opens. Non highlighted cells works perfectly.

TheOtherMarcus avatar Jan 16 '22 08:01 TheOtherMarcus

Although I have fixed an issue with highlighted cells not working with tksheets in built cell editor functionality there's still some recently introduced issues regarding behavior of custom implementations of text editors I think

ragardner avatar Feb 13 '22 18:02 ragardner