From 468d86052805e3d1438ae4a0487b4f197e572b82 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sun, 21 Oct 2012 14:54:23 +0200 Subject: [PATCH] org-export: Make sure that window displaying UI is tall enough * contrib/lisp/org-export.el (org-export-dispatch-ui): Make sure that window displaying UI is tall enough. This fixes a bug where only a part of the menu was displayed. --- contrib/lisp/org-export.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/contrib/lisp/org-export.el b/contrib/lisp/org-export.el index 488f58d33..b331225d3 100644 --- a/contrib/lisp/org-export.el +++ b/contrib/lisp/org-export.el @@ -4592,7 +4592,10 @@ back to standard interface." (delete-other-windows) (org-switch-to-buffer-other-window (get-buffer-create "*Org Export Dispatcher*")) + (org-fit-window-to-buffer) (setq cursor-type nil)) + ;; At this point, the buffer containing the menu exists and is + ;; visible in the current window. So, refresh it. (with-current-buffer "*Org Export Dispatcher*" (erase-buffer) (insert help))