From ab6d3011985abb2825aa59d7987bb22ed3699a0d Mon Sep 17 00:00:00 2001 From: Nathan Dinsmore Date: Mon, 16 Jun 2014 13:59:37 -0400 Subject: [PATCH] Added colons to the titles of local list watchers --- src/watchers/ListWatcher.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/watchers/ListWatcher.as b/src/watchers/ListWatcher.as index bbe2793..c4ffc21 100644 --- a/src/watchers/ListWatcher.as +++ b/src/watchers/ListWatcher.as @@ -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); }