aboutsummaryrefslogtreecommitdiffhomepage
path: root/ide/preferences.ml
diff options
context:
space:
mode:
Diffstat (limited to 'ide/preferences.ml')
-rw-r--r--ide/preferences.ml10
1 files changed, 8 insertions, 2 deletions
diff --git a/ide/preferences.ml b/ide/preferences.ml
index c4976748e..3d7b0017c 100644
--- a/ide/preferences.ml
+++ b/ide/preferences.ml
@@ -123,8 +123,14 @@ let (current:pref ref) =
modifiers_valid = [`SHIFT; `CONTROL; `MOD1; `MOD4];
- cmd_browse = "netscape -remote \"OpenURL(", ")\"";
- cmd_editor = "emacs ", "";
+ cmd_browse =
+ if Sys.os_type = "Win32"
+ then "C:\\PROGRA~1\\INTERN~1\\IEXPLORE ", ""
+ else "netscape -remote \"OpenURL(", ")\"";
+ cmd_editor =
+ if Sys.os_type = "Win32"
+ then "NOTEPAD ", ""
+ else "emacs ", "";
text_font = Pango.Font.from_string "sans 12";