Skip to content
Snippets Groups Projects
Commit 580061a8 authored by Bram Moolenaar's avatar Bram Moolenaar
Browse files

Fix #ifdef for GDK_SUPER_MASK.

parent 31710268
No related merge requests found
......@@ -889,7 +889,7 @@ modifiers_gdk2vim(guint state)
modifiers |= MOD_MASK_CTRL;
if (state & GDK_MOD1_MASK)
modifiers |= MOD_MASK_ALT;
#ifdef GDK_SUPER_MASK
#if GTK_CHECK_VERSION(2,10,0)
if (state & GDK_SUPER_MASK)
modifiers |= MOD_MASK_META;
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment