Minor tweaks around image alignment in ASButtonNode (#2271)

This commit is contained in:
Rocir Santiago
2016-09-20 16:47:13 -07:00
committed by Adlai Holler
parent 71fc2dd18d
commit 7dd997d442
2 changed files with 18 additions and 3 deletions

View File

@@ -16,9 +16,9 @@
*/
typedef NS_ENUM(NSInteger, ASButtonNodeImageAlignment) {
/** Places the image before the text. */
ASButtonNodeImageAlignmentBeginning = 0,
ASButtonNodeImageAlignmentBeginning,
/** Places the image after the text. */
ASButtonNodeImageAlignmentEnd = 1 << 0
ASButtonNodeImageAlignmentEnd
};
@interface ASButtonNode : ASControlNode