diff options
| author | Adrian Robert | 2009-01-21 17:56:37 +0000 |
|---|---|---|
| committer | Adrian Robert | 2009-01-21 17:56:37 +0000 |
| commit | e889fa0685793ecf592dcf14ba3d65d7515063da (patch) | |
| tree | d9835f60ca5ac0b9ce834ca0cb8008a99c354858 | |
| parent | 4c7077c3f0b190e5c9ddc4a3557f2b926f183e0a (diff) | |
| download | emacs-e889fa0685793ecf592dcf14ba3d65d7515063da.tar.gz emacs-e889fa0685793ecf592dcf14ba3d65d7515063da.zip | |
(EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame.
| -rw-r--r-- | src/ChangeLog | 1 | ||||
| -rw-r--r-- | src/nsterm.m | 5 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 79f24287812..78be848beb6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -7,6 +7,7 @@ | |||
| 7 | handle Ctrl-tab. (Bug#1841) | 7 | handle Ctrl-tab. (Bug#1841) |
| 8 | (ns_get_color): Use unsigned long long for scanned hex string value. | 8 | (ns_get_color): Use unsigned long long for scanned hex string value. |
| 9 | (ns_term_shutdown): Abort on non SIGTERM signals. | 9 | (ns_term_shutdown): Abort on non SIGTERM signals. |
| 10 | (EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame. | ||
| 10 | 11 | ||
| 11 | * nsimage.m (EmacsImage+allocInitFromFile:): Set to ignore DPI. | 12 | * nsimage.m (EmacsImage+allocInitFromFile:): Set to ignore DPI. |
| 12 | (Bug#1316) | 13 | (Bug#1316) |
diff --git a/src/nsterm.m b/src/nsterm.m index 9b89c833cd9..e34570062c8 100644 --- a/src/nsterm.m +++ b/src/nsterm.m | |||
| @@ -6198,7 +6198,8 @@ static void selectItemWithTag (NSPopUpButton *popup, int tag) | |||
| 6198 | - (IBAction)runHelp: (id)sender | 6198 | - (IBAction)runHelp: (id)sender |
| 6199 | { | 6199 | { |
| 6200 | Feval (Fcons (intern ("info"), | 6200 | Feval (Fcons (intern ("info"), |
| 6201 | Fcons (build_string ("(ns-emacs)Preferences Panel"), Qnil))); | 6201 | Fcons (build_string ("(emacs)Mac / GNUstep Customization"), |
| 6202 | Qnil))); | ||
| 6202 | SET_FRAME_GARBAGED (frame); | 6203 | SET_FRAME_GARBAGED (frame); |
| 6203 | ns_send_appdefined (-1); | 6204 | ns_send_appdefined (-1); |
| 6204 | } | 6205 | } |
| @@ -6208,6 +6209,7 @@ static void selectItemWithTag (NSPopUpButton *popup, int tag) | |||
| 6208 | { | 6209 | { |
| 6209 | Lisp_Object lispFrame; | 6210 | Lisp_Object lispFrame; |
| 6210 | XSETFRAME (lispFrame, frame); | 6211 | XSETFRAME (lispFrame, frame); |
| 6212 | ns_raise_frame(frame); | ||
| 6211 | Fns_popup_color_panel (lispFrame); | 6213 | Fns_popup_color_panel (lispFrame); |
| 6212 | } | 6214 | } |
| 6213 | 6215 | ||
| @@ -6216,6 +6218,7 @@ static void selectItemWithTag (NSPopUpButton *popup, int tag) | |||
| 6216 | { | 6218 | { |
| 6217 | Lisp_Object lispFrame; | 6219 | Lisp_Object lispFrame; |
| 6218 | XSETFRAME (lispFrame, frame); | 6220 | XSETFRAME (lispFrame, frame); |
| 6221 | ns_raise_frame(frame); | ||
| 6219 | Fns_popup_font_panel (lispFrame); | 6222 | Fns_popup_font_panel (lispFrame); |
| 6220 | } | 6223 | } |
| 6221 | 6224 | ||