We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent 5b3f0ec commit e29e80bCopy full SHA for e29e80b
src/plugins/grass/qgsgrassmodule.cpp
@@ -2628,7 +2628,11 @@ QgsGrassModuleGdalInput::QgsGrassModuleGdalInput(
2628
}
2629
2630
2631
- mLayerComboBox = new QComboBox( this );
+ QHBoxLayout *l = new QHBoxLayout( this );
2632
+ mLayerComboBox = new QComboBox();
2633
+ mLayerComboBox->setSizePolicy( QSizePolicy::Expanding,
2634
+ QSizePolicy:: Preferred );
2635
+ l->addWidget( mLayerComboBox );
2636
2637
// Of course, activated(int) is not enough, but there is no signal
2638
// BEFORE the cobo is opened
0 commit comments