Disable Netscape plugin preference on Windows
They are not supported by Windows builds of WebKitGTK+.
This commit is contained in:
parent
8175e36e7f
commit
49d7ae1fad
1 changed files with 5 additions and 0 deletions
|
@ -715,8 +715,13 @@ midori_web_settings_class_init (MidoriWebSettingsClass* class)
|
|||
"enable-plugins",
|
||||
_("Enable Netscape plugins"),
|
||||
_("Enable embedded Netscape plugin objects"),
|
||||
#ifdef G_OS_WIN32
|
||||
FALSE,
|
||||
G_PARAM_READABLE));
|
||||
#else
|
||||
TRUE,
|
||||
flags));
|
||||
#endif
|
||||
/* Override properties to override defaults */
|
||||
g_object_class_install_property (gobject_class,
|
||||
PROP_ENABLE_DEVELOPER_EXTRAS,
|
||||
|
|
Loading…
Reference in a new issue