We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80ecdeb commit 345d096Copy full SHA for 345d096
src/gui/symbology-ng/qgssymbolv2selectordialog.cpp
@@ -253,7 +253,8 @@ void QgsSymbolV2SelectorDialog::updateUi()
253
btnDown->setEnabled( false );
254
btnRemoveLayer->setEnabled( false );
255
btnLock->setEnabled( false );
256
- return;
+ btnAddLayer->setEnabled( true );
257
+ return;
258
}
259
260
int rowCount = item->parent()->rowCount();
@@ -263,6 +264,7 @@ void QgsSymbolV2SelectorDialog::updateUi()
263
264
btnDown->setEnabled( currentRow < rowCount - 1 );
265
btnRemoveLayer->setEnabled( rowCount > 1 );
266
btnLock->setEnabled( true );
267
+ btnAddLayer->setEnabled( false );
268
269
270
void QgsSymbolV2SelectorDialog::updatePreview()
0 commit comments