diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-09-15 13:17:00 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-09-15 13:17:00 +0200 |
commit | 50bf7ce0c9f8c3ede2d1a02c734beba9d5a0504e (patch) | |
tree | e11ea82ed47d606a467d8200c9a9e58712bce49a /src/feature.h | |
parent | 0571f3d6f92a7dab9c1e39acb40c2f8885887b28 (diff) | |
download | vim-git-50bf7ce0c9f8c3ede2d1a02c734beba9d5a0504e.tar.gz |
patch 8.1.2034: dark them of GTK 3 not supportedv8.1.2034
Problem: Dark them of GTK 3 not supported.
Solution: Add the "d" flag in 'guioptions'. (Jonathan Conder, closes #4934)
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/feature.h b/src/feature.h index c4ccd2177..dc5accc7a 100644 --- a/src/feature.h +++ b/src/feature.h @@ -647,6 +647,13 @@ #endif /* + * GUI dark theme variant + */ +#if defined(FEAT_GUI_GTK) && defined(USE_GTK3) +# define FEAT_GUI_DARKTHEME +#endif + +/* * GUI tabline */ #if defined(FEAT_NORMAL) \ |