From ab6d22e4d5a70c5d6348130f9e195ed8ef288237 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?tr=C3=A9meur?= Date: Sun, 5 Mar 2023 22:37:55 +0000 Subject: [PATCH] =?UTF-8?q?Android=20doesn=E2=80=99t=20recognise=20the=20e?= =?UTF-8?q?xistence=20of=20scrollbars=3F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.org | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config.org b/config.org index b9421fd..9b96ee8 100644 --- a/config.org +++ b/config.org @@ -62,7 +62,8 @@ Make the +window+ /frame/ look nice and clean. Scroll bars behave pointlessly on #+BEGIN_SRC emacs-lisp (setq inhibit-startup-screen t) (tool-bar-mode -1) - (scroll-bar-mode -1) + (unless (string-equal system-type "android") + (scroll-bar-mode -1)) (tooltip-mode -1) #+END_SRC