When selecting another land, select the first tile set, if it exists.
This commit is contained in:
parent
8034eac2e0
commit
7b13b09e01
1 changed files with 6 additions and 0 deletions
|
@ -445,6 +445,12 @@ void TileEditorMainWindow::onLandRowChanged( int row )
|
|||
|
||||
connect( m_ui->tileSetLV->selectionModel(), SIGNAL( currentChanged( const QModelIndex &, const QModelIndex & ) ),
|
||||
this, SLOT( changeActiveTileSet( const QModelIndex &, const QModelIndex & ) ) );
|
||||
|
||||
if( m_ui->tileSetLV->model()->rowCount() != 0 )
|
||||
{
|
||||
QModelIndex idx = m_ui->tileSetLV->model()->index( 0, 0 );
|
||||
m_ui->tileSetLV->setCurrentIndex( idx );
|
||||
}
|
||||
}
|
||||
|
||||
m_ui->tileSetLV->reset();
|
||||
|
|
Loading…
Reference in a new issue