diff options
| author | Choupom <andycootlapin@hotmail.fr> | 2011-06-02 19:16:22 +0200 |
|---|---|---|
| committer | oy <Tom_Adams@web.de> | 2011-06-27 16:50:38 +0200 |
| commit | bf6ca3e33dd5cdc9e604450fb42ff1db6aff3f2d (patch) | |
| tree | 5e1a9106217d00e3f36b4fb841034e627c41770a /src/game/editor/editor.cpp | |
| parent | d6f34cbaba8b411db12bb88278e6c552d32b0314 (diff) | |
| download | zcatch-bf6ca3e33dd5cdc9e604450fb42ff1db6aff3f2d.tar.gz zcatch-bf6ca3e33dd5cdc9e604450fb42ff1db6aff3f2d.zip | |
fixed tiles infos in groups with custom para or offset in editor
Diffstat (limited to 'src/game/editor/editor.cpp')
| -rw-r--r-- | src/game/editor/editor.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game/editor/editor.cpp b/src/game/editor/editor.cpp index 98c15619..8c186085 100644 --- a/src/game/editor/editor.cpp +++ b/src/game/editor/editor.cpp @@ -1174,7 +1174,10 @@ void CEditor::DoMapEditor(CUIRect View, CUIRect ToolBar) CLayerTiles *pT = static_cast<CLayerTiles *>(GetSelectedLayerType(0, LAYERTYPE_TILES)); if(m_ShowTileInfo && pT && pT->m_Visible && m_ZoomLevel <= 300) + { + GetSelectedGroup()->MapScreen(); pT->ShowInfo(); + } } static void *s_pEditorID = (void *)&s_pEditorID; |