diff options
author | Alexander Griffith <griffitaj@gmail.com> | 2017-05-12 23:03:45 -0400 |
---|---|---|
committer | Alexander Griffith <griffitaj@gmail.com> | 2017-05-12 23:03:45 -0400 |
commit | ab7b7724b9c466726d24aa8c7b68a939b0271238 (patch) | |
tree | 0239e51406c912631b4763c7c94b80750bcbb619 /lisp/mastodon.el | |
parent | 92a40a6bd6b524ee29385dc8a27c4b05b89b2cea (diff) | |
parent | 8cd83d70daa94c5387764c059419c518623099d8 (diff) |
adjusted for async image loading
Diffstat (limited to 'lisp/mastodon.el')
-rw-r--r-- | lisp/mastodon.el | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lisp/mastodon.el b/lisp/mastodon.el index 947cc6a..0dd7f10 100644 --- a/lisp/mastodon.el +++ b/lisp/mastodon.el @@ -60,6 +60,16 @@ Use. e.g. \"%c\" for your locale's date and time format." :group 'mastodon :type 'string) +(defcustom mastodon-avatar-height 30 + "Height of the user avatar images (if shown)." + :group 'mastodon + :type 'integer) + +(defcustom mastodon-preview-max-height 250 + "Max height of any media attachment preview to be shown." + :group 'mastodon + :type 'integer) + (defvar mastodon-mode-map (make-sparse-keymap) "Keymap for `mastodon-mode'.") |