From 9663a95c834af85636ea17aaba731f99b05d3cf0 Mon Sep 17 00:00:00 2001 From: gcramer Date: Fri, 21 Jul 2017 14:05:07 +0000 Subject: Bugfix [4966cad4d4]: Now function NotebookPlaceSlaves() in ttkNotebook.c will regard the active index. --- generic/ttk/ttkNotebook.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/generic/ttk/ttkNotebook.c b/generic/ttk/ttkNotebook.c index 83d7db9..437ae11 100644 --- a/generic/ttk/ttkNotebook.c +++ b/generic/ttk/ttkNotebook.c @@ -595,8 +595,12 @@ static void NotebookPlaceSlaves(void *recordPtr) Notebook *nb = recordPtr; int currentIndex = nb->notebook.currentIndex; if (currentIndex >= 0) { + int activeIndex = nb->notebook.activeIndex; + int index = (activeIndex >= 0) ? activeIndex : currentIndex; NotebookDoLayout(nb); - NotebookPlaceSlave(nb, currentIndex); + if (index >= 0) { + NotebookPlaceSlave(nb, index); + } } } -- cgit v0.12