diff options
Diffstat (limited to 'MASShortcutView.m')
| -rw-r--r-- | MASShortcutView.m | 8 | 
1 files changed, 8 insertions, 0 deletions
| diff --git a/MASShortcutView.m b/MASShortcutView.m index 4bfae8e..47254fe 100644 --- a/MASShortcutView.m +++ b/MASShortcutView.m @@ -83,6 +83,10 @@              _shortcutCell.bezelStyle = NSTexturedRoundedBezelStyle;              break;          } +        case MASShortcutViewAppearanceRounded: { +            _shortcutCell.bezelStyle = NSRoundedBezelStyle; +            break; +        }      }  } @@ -148,6 +152,10 @@              [_shortcutCell drawWithFrame:CGRectOffset(frame, 0.0, 1.0) inView:self];              break;          } +        case MASShortcutViewAppearanceRounded: { +            [_shortcutCell drawWithFrame:CGRectOffset(frame, 0.0, 1.0) inView:self]; +            break; +        }      }  } | 
