diff options
author | Victor Kareh <[email protected]> | 2019-10-14 13:33:15 -0400 |
---|---|---|
committer | Victor Kareh <[email protected]> | 2019-10-27 13:42:15 -0400 |
commit | 189cc20cf4b1742c8c63b7534b3dc94f2b7da9f0 (patch) | |
tree | 95824ade2b7649a6d740c01ced0af0d1c4759c05 /src/include/common.h | |
parent | 6b05da5e49996a2101edfd703dd3f5d91011d726 (diff) | |
download | marco-189cc20cf4b1742c8c63b7534b3dc94f2b7da9f0.tar.bz2 marco-189cc20cf4b1742c8c63b7534b3dc94f2b7da9f0.tar.xz |
tabpopup: Change schema value ranges
Since we're rewriting how tab popups are created, we should change the
gschema value ranges so that they are more compatible with the new
version.
Diffstat (limited to 'src/include/common.h')
-rw-r--r-- | src/include/common.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/common.h b/src/include/common.h index 0dc2165e..a0690918 100644 --- a/src/include/common.h +++ b/src/include/common.h @@ -320,8 +320,8 @@ void meta_frame_borders_clear (MetaFrameBorders *self); /* should investigate changing these to whatever most apps use */ #define META_DEFAULT_ICON_SIZE 48 -#define META_MIN_ICON_SIZE 6 -#define META_MAX_ICON_SIZE 480 +#define META_MIN_ICON_SIZE 8 +#define META_MAX_ICON_SIZE 256 #define META_MINI_ICON_WIDTH 16 #define META_MINI_ICON_HEIGHT 16 @@ -349,7 +349,7 @@ typedef enum #define META_DEFAULT_ALT_TAB_MAX_COLUMNS 5 #define META_MIN_ALT_TAB_MAX_COLUMNS 1 -#define META_MAX_ALT_TAB_MAX_COLUMNS 1024 +#define META_MAX_ALT_TAB_MAX_COLUMNS 16 #define META_DEFAULT_ALT_TAB_EXPAND_TO_FIT_TITLE FALSE |