Function: system-taskbar-progress

system-taskbar-progress is a byte-compiled function defined in system-taskbar.el.gz.

Signature

(system-taskbar-progress &optional PROGRESS)

Documentation

Display a progress indicator overlay on the system taskbar icon.

PROGRESS is a float in the range 0.0 to 1.0. If PROGRESS is nil, remove the progress indicator.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/system-taskbar.el.gz
(defun system-taskbar-progress (&optional progress)
  "Display a progress indicator overlay on the system taskbar icon.
PROGRESS is a float in the range 0.0 to 1.0.
If PROGRESS is nil, remove the progress indicator."
  (when system-taskbar-mode
    (system-taskbar--progress progress)))