| Summary: | Tabbar text doesn't use text color that was set with setTabTextColor (Oxygen style) | ||
|---|---|---|---|
| Product: | [Unmaintained] kdelibs | Reporter: | Roman Jarosz <kedgedev> |
| Component: | kstyle | Assignee: | Maksim Orlovich <maksim> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Compiled Sources | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: |
Screenshot of oxygen tab text color bug
patch |
||
Created attachment 22779 [details]
Screenshot of oxygen tab text color bug
On the left side is window with plastique style and on the right side with
oxygen style.
Created attachment 22800 [details]
patch
this should fix it.... Can't commit ATM, though
I've tested it, and it works great. Can you commit it? SVN commit 764063 by orlovich: Honor tab text color BUG:154894 M +3 -0 kstyle.cpp WebSVN link: http://websvn.kde.org/?view=rev&revision=764063 |
Version: (using KDE Devel) Installed from: Compiled sources Compiler: gcc 4.2.2. OS: Linux As the title says the setTabTextColor isn't painted with Oxygen style, Plastic works Below is qt app that shows the bug. I'll post screenshots too. #include <QtCore> #include <QtGui> int main(int argc, char *argv[]) { QApplication app(argc, argv); QTabBar edit; edit.addTab("xxx"); edit.addTab("yy"); edit.setTabTextColor(0, Qt::red); edit.show(); return app.exec(); }