diff options
author | Thien-Thi Nguyen <ttn@gnuvola.org> | 2007-09-13 14:09:42 +0000 |
---|---|---|
committer | Thien-Thi Nguyen <ttn@gnuvola.org> | 2007-09-13 14:09:42 +0000 |
commit | 45169e8d47c86118bb09dc734f9861d94d590da7 (patch) | |
tree | 521c109e9cc963ce3ecf43e4ff7562eb1987cff3 | |
parent | 6b22680006a05e33fdf3b6e367987bf88c0276d4 (diff) | |
download | emacs-45169e8d47c86118bb09dc734f9861d94d590da7.tar.gz |
(bubbles--initialize-images): Fix bug:
Use transparent background for empty cells in graphics mode.
-rw-r--r-- | lisp/ChangeLog | 5 | ||||
-rw-r--r-- | lisp/play/bubbles.el | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 477723cdb1a..797aa8c1169 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2007-09-13 Sascha Wilde <wilde@sha-bang.de> (tiny change) + + * play/bubbles.el (bubbles--initialize-images): Fix bug: + Use transparent background for empty cells in graphics mode. + 2007-09-13 Jari Aalto <jari.aalto@cante.net> * man.el (Man-default-man-entry): At end of line, continue looking diff --git a/lisp/play/bubbles.el b/lisp/play/bubbles.el index 133c6efc0d2..00cb6e04397 100644 --- a/lisp/play/bubbles.el +++ b/lisp/play/bubbles.el @@ -1323,7 +1323,7 @@ Return t if new char is non-empty." (setq bubbles--empty-image (create-image (replace-regexp-in-string "^\"\\(.*\\)\t.*c .*\",$" - "\"\\1\tc #FFFFFF\"," template) + "\"\\1\tc None\"," template) 'xpm t ;;:mask 'heuristic :margin '(2 . 1))) |