Make the "Input Methods" insensitive when editing isn't possible.

2003-07-24  Matthias Clasen  <maclas@gmx.de>

	* gtk/gtktextview.c (popup_targets_received): Make the "Input Methods" insensitive
	when editing isn't possible.  (#118150)
This commit is contained in:
Matthias Clasen 2003-07-24 18:50:38 +00:00 committed by Matthias Clasen
parent a5e2f158a8
commit 5a6f47c799
6 changed files with 27 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2003-07-24 Matthias Clasen <maclas@gmx.de>
* gtk/gtktextview.c (popup_targets_received): Make the "Input Methods" insensitive
when editing isn't possible. (#118150)
2003-07-23 Matthias Clasen <maclas@gmx.de>
* gtk/gtkcolorsel.c (gtk_color_selection_init): Make the hue

View File

@ -1,3 +1,8 @@
2003-07-24 Matthias Clasen <maclas@gmx.de>
* gtk/gtktextview.c (popup_targets_received): Make the "Input Methods" insensitive
when editing isn't possible. (#118150)
2003-07-23 Matthias Clasen <maclas@gmx.de>
* gtk/gtkcolorsel.c (gtk_color_selection_init): Make the hue

View File

@ -1,3 +1,8 @@
2003-07-24 Matthias Clasen <maclas@gmx.de>
* gtk/gtktextview.c (popup_targets_received): Make the "Input Methods" insensitive
when editing isn't possible. (#118150)
2003-07-23 Matthias Clasen <maclas@gmx.de>
* gtk/gtkcolorsel.c (gtk_color_selection_init): Make the hue

View File

@ -1,3 +1,8 @@
2003-07-24 Matthias Clasen <maclas@gmx.de>
* gtk/gtktextview.c (popup_targets_received): Make the "Input Methods" insensitive
when editing isn't possible. (#118150)
2003-07-23 Matthias Clasen <maclas@gmx.de>
* gtk/gtkcolorsel.c (gtk_color_selection_init): Make the hue

View File

@ -1,3 +1,8 @@
2003-07-24 Matthias Clasen <maclas@gmx.de>
* gtk/gtktextview.c (popup_targets_received): Make the "Input Methods" insensitive
when editing isn't possible. (#118150)
2003-07-23 Matthias Clasen <maclas@gmx.de>
* gtk/gtkcolorsel.c (gtk_color_selection_init): Make the hue

View File

@ -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);