]> git.eshelyaron.com Git - emacs.git/commitdiff
(toolbar-add-item): Use the same image
authorGerd Moellmann <gerd@gnu.org>
Fri, 15 Sep 2000 21:00:32 +0000 (21:00 +0000)
committerGerd Moellmann <gerd@gnu.org>
Fri, 15 Sep 2000 21:00:32 +0000 (21:00 +0000)
specification if or if not tool-bar item contains an `:enabled'
property.

lisp/toolbar/toolbar.el

index c58e617f3dc08e2976ec309f0417debd8c8ff63b..bdd0d8a4385a3d1863334f44c0d5dce48cd562ea 100644 (file)
@@ -75,10 +75,7 @@ Info node `(elisp)Image Descriptors')."
                             (:type xpm :file ,(concat icon ".xpm"))))))
     (when image
       (unless (image-mask-p image)
-       (setq image (append image '(:mask heuristict))))
-      (if (memq :enable props)
-         (let ((dis (append image '(:algorithm laplace))))
-           (setq image (vector image image dis dis))))
+       (setq image (append image '(:mask heuristic))))
       (define-key-after (or map toolbar-global-map) (vector key)
        `(menu-item ,(symbol-name key) ,def :image ,image ,@props)))))