Added colons to the titles of local list watchers

This commit is contained in:
Nathan Dinsmore 2014-06-16 13:59:37 -04:00
parent 5132c96eb2
commit ab6d301198

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);
}