File r912155.diff of Package kdebase4-runtime
Subject: oxygen: fix combobox popup too narrow
From: wstephenson@suse.de
Bug:
Patch-upstream: 912155
--- kstyles/oxygen/oxygen.cpp (revision 912154)
+++ kstyles/oxygen/oxygen.cpp (revision 912155)
@@ -3064,6 +3064,9 @@ QRect OxygenStyle::subControlRect(Comple
}
break;
}
+ case CC_ComboBox:
+ if(subControl == SC_ComboBoxListBoxPopup)
+ return r.adjusted(0,0,8,0); // add the same width as we do in eventFilter
default:
break;
}
Index: kstyles/oxygen/oxygen.cpp
===================================================================