blob: 146798a2d83ff08de14506e810eecd78ebb005c8 [file] [log] [blame]
Kateryna Kostiuk64d025a2017-07-14 11:30:44 -04001/*
Sébastien Blin029ffa82019-01-02 17:43:48 -05002 * Copyright (C) 2017-2019 Savoir-faire Linux Inc.
Kateryna Kostiuk64d025a2017-07-14 11:30:44 -04003 * Author: Kateryna Kostiuk <kateryna.kostiuk@savoirfairelinux.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20#import "SendMessagePanel.h"
21#import "NSColor+RingTheme.h"
22
23@implementation SendMessagePanel
24
Kateryna Kostiuk64d025a2017-07-14 11:30:44 -040025- (void)drawRect:(NSRect)dirtyRect {
Kateryna Kostiuk64d025a2017-07-14 11:30:44 -040026 NSBezierPath *path = [NSBezierPath bezierPath];
Kateryna Kostiukdb95b472018-04-17 16:35:57 -040027 [path moveToPoint:NSMakePoint(0, dirtyRect.size.height)];
28 [path lineToPoint:NSMakePoint(dirtyRect.size.width, dirtyRect.size.height)];
29 [[NSColor quaternaryLabelColor]set];
30 [path setLineWidth:2];
Kateryna Kostiuk64d025a2017-07-14 11:30:44 -040031 [path stroke];
32 [super drawRect:dirtyRect];
33}
34
Kateryna Kostiuk64d025a2017-07-14 11:30:44 -040035@end