From 83b7f8f44133fa726a0f6c599a277ed85d5f2705 Mon Sep 17 00:00:00 2001 From: David Rosca Date: Fri, 6 Nov 2015 18:10:02 +0100 Subject: [PATCH] ComboTabBar: Call ensureVisible() in resize event --- src/lib/tabwidget/combotabbar.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/lib/tabwidget/combotabbar.cpp b/src/lib/tabwidget/combotabbar.cpp index 800feb890..b8f3a8a24 100644 --- a/src/lib/tabwidget/combotabbar.cpp +++ b/src/lib/tabwidget/combotabbar.cpp @@ -584,6 +584,10 @@ bool ComboTabBar::event(QEvent *event) } break; + case QEvent::Resize: + ensureVisible(); + break; + default: break; }