cowsay652
cowsay652
@jarvisteach I've been trying out ttk on the next release appJar branch, and have found some issues. The first one I encountered was when I used`.setCheckbox("title", ticked=True)`, it would give...
@jarvisteach Here some more issues (yay!). This time, it's with `.addMessage()`. I get `_tkinter.TclError: unknown option "-bg"`. Also, Internationalisation looks like it breaks when using ttk, as I get `appJar:WARNING...
@jarvisteach I've found that when using label frames and `.setBg()`, the background of the label frame doesn't change, with (as far as I've tested) only images and labels using the...
@jarvisteach Here are a couple of things that I found that aren't currently being themed by ttk: Spinboxes and Toolbars.
@jarvisteach Oops. My mistake - I didn't realise that there wasn't a ttk spinbox (I was just looking for widgets that would let the user make a selection). Perhaps the...
@jarvisteach I've read the next_release docs and found how to change the background of most things, but the label in the LabelFrame doesn't change colour when I do: `program.ttkStyle.configure("TLabel", background="white")`,...
@jarvisteach Here is some code that demonstrates the issue with Label Frames and Checkboxes: from appJar import gui with gui("appJar", useTtk=True) as app: app.ttkStyle.configure("TFrame", background="blue") app.ttkStyle.configure("TLabel", background="blue") app.ttkStyle.configure("TCheckBox", background="blue") app.ttkStyle.configure("TCheck",...
@jarvisteach Thanks! Those worked a charm.
I *have* noticed a small thing though - on Windows, the text in a listbox is underlined when it is active (and it appears that on Mac/Linux this doesn't happen)....
@jarvisteach Yep - that removed the underline.