Details
-
Bug
-
Resolution: Fixed
-
P2: Important
-
5.7.0, 5.7.1, 5.8.0
-
None
-
Windows 7, Visual Studio 2015, Visual Studio 2017
-
06b1e404c936847038cc7a371720b05f31532b6a (qt/qtbase/dev) b28c6d73c2ee3b0e7986a8ed58ae6461be1883de (qt/qtbase/6.2) a9e83563dfaa02791682ad5c601b894596822223 (qt/tqtc-qtbase/5.15) bed5306eaf91b219c27ea7c2966519aa79e44039 (qt/qtbase/6.1)
Description
The right scroll button of QTabBar when only first tab is visible does not work.
#include <QApplication> #include <QTabBar> int main(int argc, char *argv[]) { QApplication a(argc, argv); QTabBar tb; tb.addTab( "Long name of the first tab" ); tb.addTab( "Long name of the second tab" ); tb.show(); return a.exec(); }
Attachments
Issue Links
- is duplicated by
-
QTBUG-70498 Cannot scroll first tab right, using scroll button in QTabBar, when tab size do not fit into visible rect.
- Closed