diff options
author | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 2019-06-30 15:27:41 +0900 |
---|---|---|
committer | YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | 2019-06-30 15:27:41 +0900 |
commit | 4a5a74a07ff783242fe2c6c76c28712ffed67a12 (patch) | |
tree | 104aad8b7dcf0da94021981226278c3f93d9931f /src/xfns.c | |
parent | 82d6b390b5e11183d5a16776f861d9e73395eeb1 (diff) | |
download | emacs-4a5a74a07ff783242fe2c6c76c28712ffed67a12.tar.gz |
* src/xfns.c (x_create_tip_frame): Support inhibit-double-buffering.
Diffstat (limited to 'src/xfns.c')
-rw-r--r-- | src/xfns.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/xfns.c b/src/xfns.c index f0e29627d93..b8a1914186c 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -6288,6 +6288,10 @@ x_create_tip_frame (struct x_display_info *dpyinfo, Lisp_Object parms) f->output_data.x->parent_desc = FRAME_DISPLAY_INFO (f)->root_window; + gui_default_parameter (f, parms, Qinhibit_double_buffering, Qnil, + "inhibitDoubleBuffering", "InhibitDoubleBuffering", + RES_TYPE_BOOLEAN); + gui_figure_window_size (f, parms, false, &x_width, &x_height); { |