summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Mendler <mail@daniel-mendler.de>2026-01-24 10:30:42 +0100
committerDaniel Mendler <mail@daniel-mendler.de>2026-01-24 10:30:42 +0100
commit52347efee84559112a254edfc032e9b23d8d0aa9 (patch)
tree2a342f48ce8d97be276cab9482881fbf29d7b92f
parent31a8a4b3d8ae5e84d5da028900892400d4c511d6 (diff)
Move defcustoms
-rw-r--r--osm.el12
1 files changed, 6 insertions, 6 deletions
diff --git a/osm.el b/osm.el
index 8902f3a..2c852c8 100644
--- a/osm.el
+++ b/osm.el
@@ -213,12 +213,6 @@ apikey. The apikey will be retrieved via `auth-source-search' with the
"Scroll step in pixel."
:type 'natnum)
-(defcustom osm-tile-border nil
- "Set to t to display thin tile borders.
-For debugging set the value to `debug', such that a border is
-shown around SVG tiles."
- :type '(choice boolean (const debug)))
-
(defcustom osm-small-step 16
"Scroll step in pixel."
:type 'natnum)
@@ -227,6 +221,12 @@ shown around SVG tiles."
"Tile server name."
:type 'symbol)
+(defcustom osm-tile-border nil
+ "Set to t to display thin tile borders.
+For debugging set the value to `debug', such that a border is
+shown around SVG tiles."
+ :type '(choice boolean (const debug)))
+
(defcustom osm-tile-directory
(expand-file-name (file-name-concat
(or (getenv "XDG_CACHE_HOME") "~/.cache/")