forked from I2P_Developers/i2p.i2p
18 lines
275 B
Swift
18 lines
275 B
Swift
//
|
|
// AdvancedTableView.swift
|
|
// I2PLauncher
|
|
//
|
|
// Created by Mikal Villa on 08/12/2018.
|
|
// Copyright © 2018 The I2P Project. All rights reserved.
|
|
//
|
|
|
|
import Cocoa
|
|
|
|
|
|
class AdvancedTableView: NSTableView {
|
|
override func viewWillDraw() {
|
|
super.viewWillDraw()
|
|
}
|
|
}
|
|
|