mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-01 01:41:01 -08:00
(EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame.
This commit is contained in:
parent
4c7077c3f0
commit
e889fa0685
2 changed files with 5 additions and 1 deletions
|
|
@ -7,6 +7,7 @@
|
|||
handle Ctrl-tab. (Bug#1841)
|
||||
(ns_get_color): Use unsigned long long for scanned hex string value.
|
||||
(ns_term_shutdown): Abort on non SIGTERM signals.
|
||||
(EmacsPrefsController-setDefaultFont:,-setColors:): Raise the frame.
|
||||
|
||||
* nsimage.m (EmacsImage+allocInitFromFile:): Set to ignore DPI.
|
||||
(Bug#1316)
|
||||
|
|
|
|||
|
|
@ -6198,7 +6198,8 @@ static void selectItemWithTag (NSPopUpButton *popup, int tag)
|
|||
- (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 @@ static void selectItemWithTag (NSPopUpButton *popup, int tag)
|
|||
{
|
||||
Lisp_Object lispFrame;
|
||||
XSETFRAME (lispFrame, frame);
|
||||
ns_raise_frame(frame);
|
||||
Fns_popup_color_panel (lispFrame);
|
||||
}
|
||||
|
||||
|
|
@ -6216,6 +6218,7 @@ static void selectItemWithTag (NSPopUpButton *popup, int tag)
|
|||
{
|
||||
Lisp_Object lispFrame;
|
||||
XSETFRAME (lispFrame, frame);
|
||||
ns_raise_frame(frame);
|
||||
Fns_popup_font_panel (lispFrame);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue