We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Latest Python 3.12.2 with latest ttkbootstrap on MacOS 14.4 (tested on M1 and x86). On Windows 11 everything works like expected.
When creating a Nootebook element, with tabs the content of the tab stays empty until you leave the tab title with the mouse.
Run the test code on MacOS:
import ttkbootstrap as ttkb app = ttkb.Window(title="Test-App", themename="solar", resizable=(True, True), size=[300,200]) gui_notebook = ttkb.Notebook(app) gui_notebook.pack(side="right", anchor="nw", expand=True, fill="both", pady=5, padx=5) tab0 = ttkb.Frame(gui_notebook) tab1 = ttkb.Frame(gui_notebook) tab2 = ttkb.Frame(gui_notebook) tab3 = ttkb.Frame(gui_notebook) tab4 = ttkb.Frame(gui_notebook) gui_notebook.add(tab0, text="Tab 0") gui_notebook.add(tab1, text="Tab 1") ttkb.Label(tab0, text="Some Text").pack(anchor="center", pady=20) ttkb.Label(tab1, text="Other Text").pack(anchor="center", pady=20) app.mainloop()
Click on Tab 1 heading and then click on Tab 0 heading and stay in the heading with the mouse pointer.
The content should be displayed when clicked on the heading.
Click on heading to activate Tab 1:
Click on heading to activate Tab 0 -> no content:
Leave the heading with mous pointer -> content appears:
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Desktop (please complete the following information):
Latest Python 3.12.2 with latest ttkbootstrap on MacOS 14.4 (tested on M1 and x86). On Windows 11 everything works like expected.
Describe the bug
When creating a Nootebook element, with tabs the content of the tab stays empty until you leave the tab title with the mouse.
To Reproduce
Run the test code on MacOS:
Click on Tab 1 heading and then click on Tab 0 heading and stay in the heading with the mouse pointer.
Expected behavior
The content should be displayed when clicked on the heading.
Screenshots
Click on heading to activate Tab 1:
Click on heading to activate Tab 0 -> no content:
Leave the heading with mous pointer -> content appears:
Additional context
No response
The text was updated successfully, but these errors were encountered: