mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-18 00:03:05 -04:00
datum transformation selection: fix crash on 'hide deprecated' (fixes #12719)
This commit is contained in:
parent
ed47ef9637
commit
1bd3776392
@ -230,6 +230,9 @@ void QgsDatumTransformDialog::on_mHideDeprecatedCheckBox_stateChanged( int )
|
||||
|
||||
void QgsDatumTransformDialog::on_mDatumTransformTreeWidget_currentItemChanged( QTreeWidgetItem *current, QTreeWidgetItem * )
|
||||
{
|
||||
if ( !current )
|
||||
return;
|
||||
|
||||
mLabelSrcDescription->setText( current->toolTip( 0 ) );
|
||||
mLabelDstDescription->setText( current->toolTip( 1 ) );
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user