mirror of
https://gitee.com/energye/energy.git
synced 2024-12-02 11:47:37 +08:00
23 lines
514 B
Go
23 lines
514 B
Go
//----------------------------------------
|
|
//
|
|
// Copyright © yanghy. All Rights Reserved.
|
|
//
|
|
// Licensed under GNU General Public License v3.0
|
|
//
|
|
//----------------------------------------
|
|
|
|
//go:build !windows
|
|
// +build !windows
|
|
|
|
package cef
|
|
|
|
// 非windows系统不支持CefTray
|
|
func (m *LCLBrowserWindow) NewCefTray(width, height int32, url string) ITray {
|
|
return nil
|
|
}
|
|
|
|
// 非windows系统不支持CefTray
|
|
func (m *ViewsFrameworkBrowserWindow) NewCefTray(width, height int32, url string) ITray {
|
|
return nil
|
|
}
|