diff options
author | Pacho Ramos <pacho@gentoo.org> | 2023-02-23 14:35:11 +0100 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2023-02-23 14:36:33 +0100 |
commit | 09bd9a6b88693fa010b3b8e05c661d6cdd289275 (patch) | |
tree | dbec828c92e2225a06460a282d74fcf2a289de98 /eclass/desktop.eclass | |
parent | media-video/pipewire: cleanup elogs, drop obsolete limits file (diff) | |
download | gentoo-09bd9a6b88693fa010b3b8e05c661d6cdd289275.tar.gz gentoo-09bd9a6b88693fa010b3b8e05c661d6cdd289275.tar.bz2 gentoo-09bd9a6b88693fa010b3b8e05c661d6cdd289275.zip |
desktop.eclass: allow 1024 as a size for icons
1024x1024 icons are starting to be deployed in some apps as they start to be
used in MacOSX environment.
https://archives.gentoo.org/gentoo-dev/message/6c01a956d37fd22553bd10a4a03f31ed
Closes: https://bugs.gentoo.org/888635
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
Diffstat (limited to 'eclass/desktop.eclass')
-rw-r--r-- | eclass/desktop.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/desktop.eclass b/eclass/desktop.eclass index aa1b9ac68d85..780971342ba1 100644 --- a/eclass/desktop.eclass +++ b/eclass/desktop.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # @ECLASS: desktop.eclass @@ -311,7 +311,7 @@ _iconins() { size=${2} fi case ${size} in - 16|22|24|32|36|48|64|72|96|128|192|256|512) + 16|22|24|32|36|48|64|72|96|128|192|256|512|1024) size=${size}x${size};; symbolic|scalable) ;; @@ -369,7 +369,7 @@ _iconins() { # !!! must specify to install into /usr/share/icons/... !!! # size of the icon, like 48 or 48x48 # supported icon sizes are: -# 16 22 24 32 36 48 64 72 96 128 192 256 512 scalable +# 16 22 24 32 36 48 64 72 96 128 192 256 512 1024 scalable # -c, --context # defaults to "apps" # -t, --theme |