mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 23:20:51 +08:00
17 lines
492 B
Go
17 lines
492 B
Go
package mac
|
|
|
|
import "github.com/leaanthony/u"
|
|
|
|
var Enabled = u.True
|
|
var Disabled = u.False
|
|
|
|
// Preferences allows to set webkit preferences
|
|
type Preferences struct {
|
|
// A Boolean value that indicates whether pressing the tab key changes the focus to links and form controls.
|
|
// Set to false by default.
|
|
TabFocusesLinks u.Bool
|
|
// A Boolean value that indicates whether to allow people to select or otherwise interact with text.
|
|
// Set to true by default.
|
|
TextInteractionEnabled u.Bool
|
|
}
|