]> git.eshelyaron.com Git - emacs.git/commitdiff
; * tab-bar, tab-line: Use integer 1 instead of float for height em.
authorJuri Linkov <juri@linkov.net>
Tue, 19 Sep 2023 17:44:16 +0000 (20:44 +0300)
committerJuri Linkov <juri@linkov.net>
Tue, 19 Sep 2023 17:44:16 +0000 (20:44 +0300)
lisp/tab-bar.el
lisp/tab-line.el

index 7484f5b79e45e4a8ce4c7180dd2d7f42595fc4ff..e4379b97d8be98b78719003fda6111a6f449254f 100644 (file)
@@ -161,7 +161,7 @@ For easier selection of tabs by their numbers, consider customizing
     (define-icon tab-bar-new nil
       `((image "symbols/plus_16.svg" "tabs/new.xpm"
                :face shadow
-               :height (1.0 . em)
+               :height (1 . em)
                :margin ,tab-bar-button-margin
                :ascent center)
         ;; (emoji "➕")
@@ -176,7 +176,7 @@ For easier selection of tabs by their numbers, consider customizing
     (define-icon tab-bar-close nil
       `((image "symbols/cross_16.svg" "tabs/close.xpm"
                :face shadow
-               :height (1.0 . em)
+               :height (1 . em)
                :margin ,tab-bar-button-margin
                :ascent center)
         ;; (emoji " ❌")
@@ -191,7 +191,7 @@ For easier selection of tabs by their numbers, consider customizing
   (unless (iconp 'tab-bar-menu-bar)
     (define-icon tab-bar-menu-bar nil
       `((image "symbols/menu_16.svg"
-               :height (1.0 . em)
+               :height (1 . em)
                :margin ,tab-bar-button-margin
                :ascent center)
         ;; (emoji "🍔")
@@ -2282,7 +2282,7 @@ and can restore them."
         (unless (iconp 'tab-bar-back)
           (define-icon tab-bar-back nil
             `((image "symbols/chevron_left_16.svg" "tabs/left-arrow.xpm"
-                     :height (1.0 . em)
+                     :height (1 . em)
                      :margin ,tab-bar-button-margin
                      :ascent center)
               (text " < "))
@@ -2293,7 +2293,7 @@ and can restore them."
         (unless (iconp 'tab-bar-forward)
           (define-icon tab-bar-forward nil
             `((image "symbols/chevron_right_16.svg" "tabs/right-arrow.xpm"
-                     :height (1.0 . em)
+                     :height (1 . em)
                      :margin ,tab-bar-button-margin
                      :ascent center)
               (text " > "))
index bdf1db7033f074fe0ab15f3785a5a5550772fa38..d3b9720d7290d72edbd357ba618d39b4b9be73b5 100644 (file)
@@ -194,7 +194,7 @@ If the value is a function, call it with no arguments."
 (define-icon tab-line-new nil
   `((image "symbols/plus_16.svg" "tabs/new.xpm"
            :face shadow
-           :height (1.0 . em)
+           :height (1 . em)
            :margin (2 . 0)
            :ascent center)
     (text " + "))
@@ -230,7 +230,7 @@ If nil, don't show it at all."
 (define-icon tab-line-close nil
   `((image "symbols/cross_16.svg" "tabs/close.xpm"
            :face shadow
-           :height (1.0 . em)
+           :height (1 . em)
            :margin (2 . 0)
            :ascent center)
     (text " x"))
@@ -249,7 +249,7 @@ If nil, don't show it at all."
 (define-icon tab-line-left nil
   `((image "symbols/chevron_left_16.svg" "tabs/left-arrow.xpm"
            :face shadow
-           :height (1.0 . em)
+           :height (1 . em)
            :margin (2 . 0)
            :ascent center)
     (text " <"))
@@ -267,7 +267,7 @@ If nil, don't show it at all."
 (define-icon tab-line-right nil
   `((image "symbols/chevron_right_16.svg" "tabs/right-arrow.xpm"
            :face shadow
-           :height (1.0 . em)
+           :height (1 . em)
            :margin (2 . 0)
            :ascent center)
     (text "> "))