diff options
| author | Vadim Shpakovski | 2012-09-19 01:49:24 +0300 | 
|---|---|---|
| committer | Vadim Shpakovski | 2012-09-19 01:49:24 +0300 | 
| commit | 08717ff81efc9e868e0af7fdb8b6807508c6b0fb (patch) | |
| tree | e825105ebcbcdaf365e38f8430c34b2e405a949a /MASShortcutView.m | |
| parent | e01e9075e5f94abc1428a4799c691836599d7e5b (diff) | |
| parent | da2e1af5741cff902ee4c06408316a92695450b8 (diff) | |
| download | MASShortcut-08717ff81efc9e868e0af7fdb8b6807508c6b0fb.tar.bz2 | |
Merge remote-tracking branch 'origin/master'
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; +        }      }  } | 
