1234567891011121314151617 |
- //
- // PrefWindow.m
- // RedditBar
- //
- // Created by Thomas Buck on 15.12.13.
- // Copyright (c) 2013 xythobuz. All rights reserved.
- //
-
- #import "PrefWindow.h"
-
- @implementation PrefWindow
-
- -(BOOL)canBecomeKeyWindow {
- return YES;
- }
-
- @end
|