Bug 214786 - Text on VerticalTabs isn't shown
Summary: Text on VerticalTabs isn't shown
Status: RESOLVED FIXED
Alias: None
Product: Oxygen
Classification: Plasma
Component: style (show other bugs)
Version: unspecified
Platform: Ubuntu Linux
: NOR normal
Target Milestone: ---
Assignee: Hugo Pereira Da Costa
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-11-16 10:54 UTC by Patrick R. Gansterer
Modified: 2009-12-06 06:13 UTC (History)
2 users (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Patrick R. Gansterer 2009-11-16 10:54:17 UTC
Version:            (using KDE 4.3.1)
OS:                Linux
Installed from:    Ubuntu Packages

http://bugreports.qt.nokia.com/browse/QTBUG-5820

The text on the Tabs isn't shwon.

#include <QtGui>

int main(int argc, char *argv[])
{
	QApplication app(argc, argv);
	QMainWindow mainWindow;

	QDockWidget dockWidget1(QObject::tr("Dock Widget 1"));
	QDockWidget dockWidget2(QObject::tr("Dock Widget 2"));

	mainWindow.setDockOptions(mainWindow.dockOptions() | QMainWindow::VerticalTabs);
	mainWindow.addDockWidget(Qt::LeftDockWidgetArea, &dockWidget1);
	mainWindow.tabifyDockWidget(&dockWidget1, &dockWidget2);

	mainWindow.show();
	return app.exec();
}
Comment 1 Christoph Feck 2009-11-17 01:20:20 UTC
Cannot reproduce on current trunk, looks like Hugo fixed it already with r1042371.
Comment 2 Hugo Pereira Da Costa 2009-11-17 02:22:13 UTC
Indeed fixed in trunk as far as I know.