Merge pull request #265 from nathan/local-list-watcher-colon

Added colons to the titles of local list watchers
This commit is contained in:
Shane M. Clements 2014-06-18 12:28:19 +02:00
commit 3e3295ca04

View file

@ -523,7 +523,7 @@ public class ListWatcher extends Sprite {
}
public function updateTitle():void {
title.text = ((target == null) || (target.isStage)) ? listName : target.objName + ' ' + listName;
title.text = ((target == null) || (target.isStage)) ? listName : target.objName + ': ' + listName;
title.width = title.textWidth + 5;
title.x = Math.floor((frame.w - title.width) / 2);
}