From d8b36d8b17b73ce482359b070c221f608959fde4 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Tue, 15 Apr 2025 19:03:31 -0400 Subject: [PATCH] fix: use-dialog-box only on android Accidentally negated the check in 6a44a2e. Amend: 6a44a2ea80a7 --- lisp/doom-ui.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/doom-ui.el b/lisp/doom-ui.el index cf9cab049..944b49e10 100644 --- a/lisp/doom-ui.el +++ b/lisp/doom-ui.el @@ -313,7 +313,7 @@ windows, switch to `doom-fallback-buffer'. Otherwise, delegate to original ;; UX: GUIs are inconsistent across systems, desktop environments, and themes, ;; but more annoying than that are the inconsistent shortcut keys tied to ;; them, so use Emacs instead of GUI popups. -(setq use-dialog-box (not (featurep :system 'android))) ; Android dialogs are better UX +(setq use-dialog-box (featurep :system 'android)) ; Android dialogs are better UX (when (bound-and-true-p tooltip-mode) (tooltip-mode -1))