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 138c345 commit e6bb127Copy full SHA for e6bb127
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