Respect x/y flip for selections with different flip states

This commit is contained in:
GriffinR
2020-07-13 13:08:57 -04:00
committed by huderlem
parent 023be7f541
commit b5b227a6a0
3 changed files with 18 additions and 19 deletions

View File

@@ -39,7 +39,7 @@ private:
bool externalSelection;
int externalSelectionWidth;
int externalSelectionHeight;
QList<uint16_t> externalSelectedTiles;
QList<Tile> externalSelectedTiles;
Tileset *primaryTileset;
Tileset *secondaryTileset;
@@ -52,7 +52,7 @@ private:
uint16_t getTileId(int x, int y);
QPoint getTileCoords(uint16_t);
QList<QRgb> getCurPaletteTable();
QList<Tile> buildSelectedTiles(int, int, QList<uint16_t>);
QList<Tile> buildSelectedTiles(int, int, QList<Tile>);
signals:
void hoveredTileChanged(uint16_t);