summaryrefslogtreecommitdiff
path: root/src/option.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-03-08 22:47:17 +0100
committerBram Moolenaar <Bram@vim.org>2016-03-08 22:47:17 +0100
commitbeb003b303cde1e55634aae9f810535684b76211 (patch)
tree4da345d8fe9455d6f637f8cbfa73f5453bdc21fc /src/option.h
parent045a284a83c2a85113de233d5233eae34724a4b6 (diff)
downloadvim-git-beb003b303cde1e55634aae9f810535684b76211.tar.gz
patch 7.4.1525v7.4.1525
Problem: On a high resolution screen the toolbar icons are too small. Solution: Add "huge" and "giant" to 'toolbariconsize'. (Brian Gix)
Diffstat (limited to 'src/option.h')
-rw-r--r--src/option.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/option.h b/src/option.h
index 2f1f04f04..6b194bc0d 100644
--- a/src/option.h
+++ b/src/option.h
@@ -871,12 +871,14 @@ static char *(p_toolbar_values[]) = {"text", "icons", "tooltips", "horiz", NULL}
EXTERN char_u *p_tbis; /* 'toolbariconsize' */
EXTERN unsigned tbis_flags;
# ifdef IN_OPTION_C
-static char *(p_tbis_values[]) = {"tiny", "small", "medium", "large", NULL};
+static char *(p_tbis_values[]) = {"tiny", "small", "medium", "large", "huge", "giant", NULL};
# endif
# define TBIS_TINY 0x01
# define TBIS_SMALL 0x02
# define TBIS_MEDIUM 0x04
# define TBIS_LARGE 0x08
+# define TBIS_HUGE 0x10
+# define TBIS_GIANT 0x20
#endif
EXTERN long p_ttyscroll; /* 'ttyscroll' */
#if defined(FEAT_MOUSE) && (defined(UNIX) || defined(VMS))