diff --git a/ChangeLog b/ChangeLog index 97fb10a0b7..384f43c772 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-07-24 Matthias Clasen + + * gtk/gtktextview.c (popup_targets_received): Make the "Input Methods" insensitive + when editing isn't possible. (#118150) + 2003-07-23 Matthias Clasen * gtk/gtkcolorsel.c (gtk_color_selection_init): Make the hue diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 97fb10a0b7..384f43c772 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,8 @@ +2003-07-24 Matthias Clasen + + * gtk/gtktextview.c (popup_targets_received): Make the "Input Methods" insensitive + when editing isn't possible. (#118150) + 2003-07-23 Matthias Clasen * gtk/gtkcolorsel.c (gtk_color_selection_init): Make the hue diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 97fb10a0b7..384f43c772 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,8 @@ +2003-07-24 Matthias Clasen + + * gtk/gtktextview.c (popup_targets_received): Make the "Input Methods" insensitive + when editing isn't possible. (#118150) + 2003-07-23 Matthias Clasen * gtk/gtkcolorsel.c (gtk_color_selection_init): Make the hue diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 97fb10a0b7..384f43c772 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,8 @@ +2003-07-24 Matthias Clasen + + * gtk/gtktextview.c (popup_targets_received): Make the "Input Methods" insensitive + when editing isn't possible. (#118150) + 2003-07-23 Matthias Clasen * gtk/gtkcolorsel.c (gtk_color_selection_init): Make the hue diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 97fb10a0b7..384f43c772 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,8 @@ +2003-07-24 Matthias Clasen + + * gtk/gtktextview.c (popup_targets_received): Make the "Input Methods" insensitive + when editing isn't possible. (#118150) + 2003-07-23 Matthias Clasen * gtk/gtkcolorsel.c (gtk_color_selection_init): Make the hue diff --git a/gtk/gtktextview.c b/gtk/gtktextview.c index bcc779bf00..0b748f81f0 100644 --- a/gtk/gtktextview.c +++ b/gtk/gtktextview.c @@ -6818,6 +6818,8 @@ popup_targets_received (GtkClipboard *clipboard, menuitem = gtk_menu_item_new_with_mnemonic (_("Input _Methods")); gtk_widget_show (menuitem); + gtk_widget_set_sensitive (menuitem, can_insert); + submenu = gtk_menu_new (); gtk_menu_item_set_submenu (GTK_MENU_ITEM (menuitem), submenu); gtk_menu_shell_append (GTK_MENU_SHELL (text_view->popup_menu), menuitem);