diff src/nsterm.m @ 101319:a776dcbbb2c5

(EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame.
author Adrian Robert <Adrian.B.Robert@gmail.com>
date Wed, 21 Jan 2009 17:56:37 +0000
parents f4441bcb2612
children 0f6bc8e16469
line wrap: on
line diff
--- a/src/nsterm.m	Wed Jan 21 17:28:05 2009 +0000
+++ b/src/nsterm.m	Wed Jan 21 17:56:37 2009 +0000
@@ -6198,7 +6198,8 @@
 - (IBAction)runHelp: (id)sender
 {
   Feval (Fcons (intern ("info"),
-              Fcons (build_string ("(ns-emacs)Preferences Panel"), Qnil)));
+                Fcons (build_string ("(emacs)Mac / GNUstep Customization"),
+                       Qnil)));
   SET_FRAME_GARBAGED (frame);
   ns_send_appdefined (-1);
 }
@@ -6208,6 +6209,7 @@
 {
   Lisp_Object lispFrame;
   XSETFRAME (lispFrame, frame);
+  ns_raise_frame(frame);
   Fns_popup_color_panel (lispFrame);
 }
 
@@ -6216,6 +6218,7 @@
 {
   Lisp_Object lispFrame;
   XSETFRAME (lispFrame, frame);
+  ns_raise_frame(frame);
   Fns_popup_font_panel (lispFrame);
 }