comparison src/gui_gtk.c @ 9035:08854bb267b2 v7.4.1803

commit https://github.com/vim/vim/commit/0b6cf69c038b9af198542edc349ebe8e53a8f847 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 30 13:26:14 2016 +0200 patch 7.4.1803 Problem: GTK3 doesn't handle menu separaters properly. Solution: Use gtk_separator_menu_item_new(). (Kazunobu Kuriyama)
author Christian Brabandt <cb@256bit.org>
date Sat, 30 Apr 2016 13:30:05 +0200
parents 738c2929d6ad
children 4aead6a9b7a9
comparison
equal deleted inserted replaced
9034:e29f984d1cc0 9035:08854bb267b2
779 ++idx; 779 ++idx;
780 780
781 if (menu_is_separator(menu->name)) 781 if (menu_is_separator(menu->name))
782 { 782 {
783 /* Separator: Just add it */ 783 /* Separator: Just add it */
784 # if GTK_CHECK_VERSION(3,0,0)
785 menu->id = gtk_separator_menu_item_new();
786 # else
784 menu->id = gtk_menu_item_new(); 787 menu->id = gtk_menu_item_new();
785 gtk_widget_set_sensitive(menu->id, FALSE); 788 gtk_widget_set_sensitive(menu->id, FALSE);
789 # endif
786 gtk_widget_show(menu->id); 790 gtk_widget_show(menu->id);
787 # if GTK_CHECK_VERSION(3,0,0) 791 # if GTK_CHECK_VERSION(3,0,0)
788 gtk_menu_shell_insert(GTK_MENU_SHELL(parent->submenu_id), 792 gtk_menu_shell_insert(GTK_MENU_SHELL(parent->submenu_id),
789 menu->id, idx); 793 menu->id, idx);
790 # else 794 # else