diff options
| author | YAMAMOTO Mitsuharu | 2005-11-19 06:34:23 +0000 |
|---|---|---|
| committer | YAMAMOTO Mitsuharu | 2005-11-19 06:34:23 +0000 |
| commit | ed256b30574ccaeb894c34369f79f4dd082bbd6a (patch) | |
| tree | 9e659f56f479f8836c11925a4aad59f8efe142e9 | |
| parent | f70494599726c6fb491e71a43b392b30b071ce23 (diff) | |
| download | emacs-ed256b30574ccaeb894c34369f79f4dd082bbd6a.tar.gz emacs-ed256b30574ccaeb894c34369f79f4dd082bbd6a.zip | |
(fancy-splash-default-action): Discard only
mouse-down and succeeding mouse-up events in the splash screen
window so that drag-n-drop event can be processed.
| -rw-r--r-- | lisp/startup.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/startup.el b/lisp/startup.el index 9e3f2bb4aa9..5c264749dd6 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -1301,7 +1301,7 @@ This is an internal function used to turn off the splash screen after | |||
| 1301 | the user caused an input event by hitting a key or clicking with the | 1301 | the user caused an input event by hitting a key or clicking with the |
| 1302 | mouse." | 1302 | mouse." |
| 1303 | (interactive) | 1303 | (interactive) |
| 1304 | (if (and (consp last-command-event) | 1304 | (if (and (memq 'down (event-modifiers last-command-event)) |
| 1305 | (eq (posn-window (event-start last-command-event)) | 1305 | (eq (posn-window (event-start last-command-event)) |
| 1306 | (selected-window))) | 1306 | (selected-window))) |
| 1307 | ;; This is a mouse-down event in the spash screen window. | 1307 | ;; This is a mouse-down event in the spash screen window. |