mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
Fix setting symbol width/size/rotation from right click menu
(fix #13070)
This commit is contained in:
parent
4fba5ff493
commit
4bff1e094d
@ -130,7 +130,7 @@ void QgsRendererV2Widget::changeSymbolWidth()
|
||||
|
||||
QgsDataDefinedWidthDialog dlg( symbolList, mLayer );
|
||||
|
||||
if ( QMessageBox::Ok == dlg.exec() )
|
||||
if ( QDialog::Accepted == dlg.exec() )
|
||||
{
|
||||
if ( !dlg.mDDBtn->isActive() )
|
||||
{
|
||||
@ -155,7 +155,7 @@ void QgsRendererV2Widget::changeSymbolSize()
|
||||
|
||||
QgsDataDefinedSizeDialog dlg( symbolList, mLayer );
|
||||
|
||||
if ( QMessageBox::Ok == dlg.exec() )
|
||||
if ( QDialog::Accepted == dlg.exec() )
|
||||
{
|
||||
if ( !dlg.mDDBtn->isActive() )
|
||||
{
|
||||
@ -180,7 +180,7 @@ void QgsRendererV2Widget::changeSymbolAngle()
|
||||
|
||||
QgsDataDefinedRotationDialog dlg( symbolList, mLayer );
|
||||
|
||||
if ( QMessageBox::Ok == dlg.exec() )
|
||||
if ( QDialog::Accepted == dlg.exec() )
|
||||
{
|
||||
if ( !dlg.mDDBtn->isActive() )
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user