GNOME Bugzilla – Bug 660310
windowAttentionHandler: Remove "%s has finished starting"
Last modified: 2011-09-29 14:00:36 UTC
Spotted on http://www.reddit.com/r/linux/comments/ktay3/thanks_for_precision/ It's quite a silly message anyway.
Created attachment 197621 [details] [review] windowAttentionHandler: Refactor startup-sequence handling Instead of wiping and remaking an entire hash of startup IDs every time, just modify the entry that's necessary.
Created attachment 197622 [details] [review] windowAttentionHandler: Remove "%s has finished starting" The message is verbose and confusing. Use the traditional "'%s' is ready" for all cases.
Created attachment 197625 [details] [review] windowAttentionHandler: Remove "%s has finished starting" The message is verbose and confusing. Use the traditional "'%s' is ready" for all cases. -- remove now unused _getTitle and _getBanner funcs.
Created attachment 197626 [details] [review] windowAttentionHandler: Remove "%s has finished starting" The message is verbose and confusing. Use the traditional "'%s' is ready" for all cases. Gah, I'm just terrible tonight. If we don't need to do anything with the startup IDs, why track them?
Review of attachment 197626 [details] [review]: Fine.
Created attachment 197700 [details] [review] windowAttentionHandler: Remove "%s has finished starting" The message is verbose and confusing. Use the traditional "'%s' is ready" for all cases. -- The old one was broken. This better?
Review of attachment 197700 [details] [review]: ::: js/ui/windowAttentionHandler.js @@ +41,3 @@ + source.signalIDs.push(window.connect('notify::title', + Lang.bind(this, function(win) { + notification.update(title, banned); Who's banned? ;)
Created attachment 197759 [details] [review] windowAttentionHandler: Remove "%s has finished starting" The message is verbose and confusing. Use the traditional "'%s' is ready" for all cases. err, yeah. This is why we have code review.
Review of attachment 197759 [details] [review]: Looks good, just one minor nitpick. ::: js/ui/windowAttentionHandler.js @@ +40,3 @@ + source.signalIDs.push(window.connect('notify::title', + Lang.bind(this, function(win) { This param is no longer being used so you can just remove it.
Attachment 197759 [details] pushed as 6510904 - windowAttentionHandler: Remove "%s has finished starting"