From: Joe K. <jof...@gm...> - 2015-06-15 13:23:51
|
On Mon, Jun 15, 2015 at 6:23 AM, Benjamin Root <ben...@ou...> wrote: > That's the weird thing... I couldn't! I tried a few different things and I > couldn't make it go away. I'll probably give it another shot during > scipy2015. > I'm guessing, but did you try changing the (Tk) ``highlightthickness``? E.g., something like: widget.config(borderwidth=0, highlightthickness=0) It's a moderately classic Tkinter gotcha. You remove all the borders and there's still one (hightlightthickness) still there, but it only shows up when you interact with the Frame. Hope that helps, -Joe |