Skip to content

Commit 9f6f08a

Browse files
committed
[composer] Fix save world file does not work (fix #15268)
(cherry-picked from 38a811b)
1 parent 30580ed commit 9f6f08a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gui/qgscomposeritemcombobox.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ QgsComposerItemComboBox::QgsComposerItemComboBox( QWidget *parent, QgsCompositio
2323
setComposition( composition );
2424

2525
setModelColumn( QgsComposerModel::ItemId );
26-
connect( this, SIGNAL( activated( int ) ), this, SLOT( indexChanged( int ) ) );
26+
connect( this, SIGNAL( currentIndexChanged( int ) ), this, SLOT( indexChanged( int ) ) );
2727
connect( mProxyModel, SIGNAL( rowsInserted( QModelIndex, int, int ) ), this, SLOT( rowsChanged() ) );
2828
connect( mProxyModel, SIGNAL( rowsRemoved( QModelIndex, int, int ) ), this, SLOT( rowsChanged() ) );
2929
}

0 commit comments

Comments
 (0)