Skip to content

Commit

Permalink
Rename Block to Metatile
Browse files Browse the repository at this point in the history
  • Loading branch information
huderlem committed Jul 20, 2018
1 parent 6546bcb commit 6b5ad53
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions mainwindow.ui
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@
</size>
</property>
<property name="currentIndex">
<number>1</number>
<number>0</number>
</property>
<widget class="QWidget" name="tab_blocks">
<property name="sizePolicy">
Expand All @@ -476,7 +476,7 @@
</sizepolicy>
</property>
<attribute name="title">
<string>Blocks</string>
<string>Metatiles</string>
</attribute>
<layout class="QGridLayout" name="gridLayout_3">
<property name="leftMargin">
Expand Down
2 changes: 1 addition & 1 deletion map.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ void Map::clearHoveredTile() {

void Map::hoveredMetatileChanged(int blockIndex) {
int tile = getSelectedBlockIndex(blockIndex);
emit statusBarMessage(QString("Block: 0x%1")
emit statusBarMessage(QString("Metatile: 0x%1")
.arg(QString("%1").arg(tile, 3, 16, QChar('0')).toUpper()));
}

Expand Down

0 comments on commit 6b5ad53

Please sign in to comment.