Set teh current selection to row 0

--HG--
branch : gsoc2014-dfighter
hg/feature/cdb-packed
dfighter1985 10 years ago
parent 3e2addc057
commit ac73999f07

@ -749,6 +749,13 @@ void TileEditorMainWindow::onTileBankLoaded()
m_ui->tileBankTexturePathPB->setText( "..." );
else
m_ui->tileBankTexturePathPB->setText( path );
QModelIndex idx = m_tileModel->index( 0, 0 );
if( idx.isValid() )
m_ui->tileSetLV->setCurrentIndex( idx );
if( m_ui->landLW->count() > 0 )
m_ui->landLW->setCurrentRow( 0 );
}
TileModel* TileEditorMainWindow::createTileModel()

@ -168,5 +168,6 @@ bool TileBankLoader::load( const char *filename, TileModel *model, QList< Land >
model->setTexturePath( p->bank.getAbsPath().c_str() );
return false;
}

Loading…
Cancel
Save