--- a/src/eric7/EricWidgets/EricIconBar.py Thu Nov 02 16:01:14 2023 +0100 +++ b/src/eric7/EricWidgets/EricIconBar.py Thu Nov 02 16:43:22 2023 +0100 @@ -33,12 +33,12 @@ BarSizes = { # tuples with (icon size, border size, translated size string) - "xs": (16, 1, QCoreApplication.translate("EricIconBar", "extra small")), - "sm": (22, 1, QCoreApplication.translate("EricIconBar", "small")), - "md": (32, 2, QCoreApplication.translate("EricIconBar", "medium")), - "lg": (48, 2, QCoreApplication.translate("EricIconBar", "large")), - "xl": (64, 3, QCoreApplication.translate("EricIconBar", "extra large")), - "xxl": (96, 3, QCoreApplication.translate("EricIconBar", "very large")), + "xs": (16, 1, QCoreApplication.translate("EricIconBar", "extra small (16 px)")), + "sm": (22, 1, QCoreApplication.translate("EricIconBar", "small (22 px)")), + "md": (32, 2, QCoreApplication.translate("EricIconBar", "medium (32 px)")), + "lg": (48, 2, QCoreApplication.translate("EricIconBar", "large (48 px)")), + "xl": (64, 3, QCoreApplication.translate("EricIconBar", "extra large (64 px)")), + "xxl": (96, 3, QCoreApplication.translate("EricIconBar", "very large (96 px)")), } DefaultBarSize = "md"