* made a bug

This commit is contained in:
giantpune@gmail.com 2010-12-29 04:12:20 +00:00
parent e21a3c0e4b
commit e3dc4133c2

View File

@ -151,9 +151,8 @@ void MainWindow::on_actionLoad_triggered()
// SHOW TPL ON SCREEN // SHOW TPL ON SCREEN
//if you have a format that uses palette data, you need to add that to the last arg here //if you have a format that uses palette data, you need to add that to the last arg here
QImage img = ConvertTextureToImage( pic_data, pic_head.width, pic_head.height, pic_head.format ); QImage img = ConvertTextureToImage( pic_data, pic_head.width, pic_head.height, pic_head.format );
if( img.isNull() )//error converting if( !img.isNull() )//error converting
continue; {
QGraphicsPixmapItem *item = new QGraphicsPixmapItem( QPixmap::fromImage( img ) ); QGraphicsPixmapItem *item = new QGraphicsPixmapItem( QPixmap::fromImage( img ) );
if( x + img.width() + spacing >= (quint32)gv->width() )//this row is filled up, skip down and start a new row if( x + img.width() + spacing >= (quint32)gv->width() )//this row is filled up, skip down and start a new row
{ {
@ -166,6 +165,7 @@ void MainWindow::on_actionLoad_triggered()
item->setPos( x, y ); item->setPos( x, y );
gs.addItem( item ); gs.addItem( item );
x += img.width() + spacing; x += img.width() + spacing;
}
// SAVE TPL TO FILE // SAVE TPL TO FILE
#if 0 #if 0