[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/dslide 5cf6e1d521 102/230: option to hide mode line when d
From: |
ELPA Syncer |
Subject: |
[nongnu] elpa/dslide 5cf6e1d521 102/230: option to hide mode line when displaying images |
Date: |
Sun, 7 Jul 2024 19:00:20 -0400 (EDT) |
branch: elpa/dslide
commit 5cf6e1d521a3a2118f5b135b46eb2d1da230f4e7
Author: Psionik K <73710933+psionic-k@users.noreply.github.com>
Commit: Psionik K <73710933+psionic-k@users.noreply.github.com>
option to hide mode line when displaying images
Signed-off-by: Psionik K <73710933+psionic-k@users.noreply.github.com>
---
macro-slides.el | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/macro-slides.el b/macro-slides.el
index e507b6dd20..fa45958e03 100644
--- a/macro-slides.el
+++ b/macro-slides.el
@@ -1462,6 +1462,10 @@ stateful-sequence class methods. METHOD-NAME is a
string."
:initform nil
:initarg :fullscreen
:documentation "Switch to full frame during display.")
+ (hide-mode-line
+ :initform t
+ :initarg :hide-mode-line
+ :documentation "Turn on `hide-mode-line-mode'.")
(refresh
:initform nil
:initarg :refresh
@@ -1489,6 +1493,8 @@ stateful-sequence class methods. METHOD-NAME is a
string."
(when (eq (buffer-local-value 'major-mode (current-buffer))
'image-mode)
+ (when (oref obj hide-mode-line)
+ (hide-mode-line-mode 1))
(image-transform-fit-to-window)
(let ((image-buffer (current-buffer)))
(ms-push-step
@@ -1510,6 +1516,8 @@ stateful-sequence class methods. METHOD-NAME is a
string."
(when (eq (buffer-local-value 'major-mode (current-buffer))
'image-mode)
+ (when (oref obj hide-mode-line)
+ (hide-mode-line-mode 1))
(image-transform-fit-to-window)
(let ((image-buffer (current-buffer)))
(ms-push-step
- [nongnu] elpa/dslide aed4afd84a 063/230: implement hiding children, (continued)
- [nongnu] elpa/dslide aed4afd84a 063/230: implement hiding children, ELPA Syncer, 2024/07/07
- [nongnu] elpa/dslide 199bb5b68b 079/230: Properties standardized to MS_ prefix, ELPA Syncer, 2024/07/07
- [nongnu] elpa/dslide ada6553434 080/230: missed a few updates to property names, ELPA Syncer, 2024/07/07
- [nongnu] elpa/dslide fca6e33a6c 060/230: Properly declare generic methods, reconcile documentation, ELPA Syncer, 2024/07/07
- [nongnu] elpa/dslide 4af0c6b990 084/230: Remove vestigal push-* code, ELPA Syncer, 2024/07/07
- [nongnu] elpa/dslide 0cbd0b7bab 081/230: Remove vestigal ms-slide-hook, ELPA Syncer, 2024/07/07
- [nongnu] elpa/dslide 1d61b6ffc1 083/230: Codify the hooks and lifecycle feedback messages, ELPA Syncer, 2024/07/07
- [nongnu] elpa/dslide 31fc027f52 057/230: !temporary basic composition support, ELPA Syncer, 2024/07/07
- [nongnu] elpa/dslide 09b9e5bc63 071/230: keep-fill implementation for hiding, ELPA Syncer, 2024/07/07
- [nongnu] elpa/dslide 2c515e58d0 127/230: remove redundant actions in demo, ELPA Syncer, 2024/07/07
- [nongnu] elpa/dslide 5cf6e1d521 102/230: option to hide mode line when displaying images,
ELPA Syncer <=
- [nongnu] elpa/dslide 0087bce96f 082/230: Finished some incomplete parts of the README, ELPA Syncer, 2024/07/07
- [nongnu] elpa/dslide 7e0cf003b0 092/230: don't log feedback messages to the message log, ELPA Syncer, 2024/07/07
- [nongnu] elpa/dslide 1472ac4601 137/230: package lint, ELPA Syncer, 2024/07/07
- [nongnu] elpa/dslide d33205f260 138/230: soft-require hide-mode-line, ELPA Syncer, 2024/07/07
- [nongnu] elpa/dslide c131653996 139/230: Remove extraneous +1, ELPA Syncer, 2024/07/07
- [nongnu] elpa/dslide 76ff3c1b06 151/230: - dumping off some minor cleanup line noise, ELPA Syncer, 2024/07/07
- [nongnu] elpa/dslide bdc16a2b5d 148/230: multiple animation timers, ELPA Syncer, 2024/07/07
- [nongnu] elpa/dslide ccb8064891 152/230: ensure-slide-buffer only displays when not already displayed, ELPA Syncer, 2024/07/07
- [nongnu] elpa/dslide cd785d24b3 160/230: Override default dbase-end implementation for image action, ELPA Syncer, 2024/07/07
- [nongnu] elpa/dslide 24253f64c0 157/230: introducing reverse-in-place, ELPA Syncer, 2024/07/07