sdgui: fix context menu item sensitivity
This commit is contained in:
parent
b0f1d3d6ea
commit
49072f9d01
|
@ -729,7 +729,7 @@ make_context_menu (StardictView *self)
|
||||||
{
|
{
|
||||||
GtkWidget *copy = gtk_menu_item_new_with_mnemonic ("_Copy");
|
GtkWidget *copy = gtk_menu_item_new_with_mnemonic ("_Copy");
|
||||||
gtk_widget_set_sensitive (copy,
|
gtk_widget_set_sensitive (copy,
|
||||||
self->selection_begin < self->selection_end);
|
self->selection_begin != self->selection_end);
|
||||||
g_signal_connect_data (copy, "activate",
|
g_signal_connect_data (copy, "activate",
|
||||||
G_CALLBACK (on_copy_activate), g_object_ref (self),
|
G_CALLBACK (on_copy_activate), g_object_ref (self),
|
||||||
(GClosureNotify) g_object_unref, 0);
|
(GClosureNotify) g_object_unref, 0);
|
||||||
|
|
Loading…
Reference in New Issue