mirror of
https://github.com/HackPlan/quark-shell-mac.git
synced 2026-01-12 15:04:57 +08:00
19 lines
236 B
Objective-C
19 lines
236 B
Objective-C
//
|
|
// QSHWindow.m
|
|
// quark-shell
|
|
//
|
|
// Created by Xhacker Liu on 5/6/14.
|
|
// Copyright (c) 2014 Xhacker. All rights reserved.
|
|
//
|
|
|
|
#import "QSHWindow.h"
|
|
|
|
@implementation QSHWindow
|
|
|
|
- (BOOL)canBecomeKeyWindow
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
@end
|