Index: scribus/ui/stylecombos.cpp
===================================================================
--- scribus/ui/stylecombos.cpp	(Revision 26852)
+++ scribus/ui/stylecombos.cpp	(Arbeitskopie)
@@ -38,6 +38,11 @@
 	addItem( firstItemString() );
 	addItem( CommonStrings::trDefaultParagraphStyle );
 	connect(this, SIGNAL(activated(int)), this, SLOT(selectedStyle(int)));
+
+	setMaximumWidth(250);
+	// # Alternative size policy
+	// setMinimumContentsLength(20);
+	// setSizeAdjustPolicy(QComboBox::AdjustToMinimumContentsLengthWithIcon);
 }
 
 QString ParaStyleComboBox::currentStyle() const
@@ -169,6 +174,11 @@
 	addItem( firstItemString()  );
 	addItem( CommonStrings::trDefaultCharacterStyle );
 	connect(this, SIGNAL(activated(int)), this, SLOT(selectedStyle(int)));
+
+	setMaximumWidth(250);
+	// # Alternative size policy
+	// setMinimumContentsLength(20);
+	// setSizeAdjustPolicy(QComboBox::AdjustToMinimumContentsLengthWithIcon);
 }
 
 QString CharStyleComboBox::currentStyle() const
