Do

Code review comment for lp://staging/~jassmith/do/menu-theme

Revision history for this message
David Siegel (djsiegel-deactivatedaccount) wrote :

Looks good to me.

return (window.IsMinimized) ? .5 : base.IconOpacity;

You don't need to parenthesize the boolean expression.

return window.IsMinimized ? .5 : base.IconOpacity;

review: Approve

« Back to merge proposal