Only take bookmark button for a bookmark if it's a single item
This commit is contained in:
parent
6f35f0070c
commit
ea7c5f9de4
1 changed files with 1 additions and 1 deletions
|
@ -370,7 +370,7 @@ katze_array_action_proxy_clicked_cb (GtkWidget* proxy,
|
||||||
}
|
}
|
||||||
|
|
||||||
array = (KatzeArray*)g_object_get_data (G_OBJECT (proxy), "KatzeArray");
|
array = (KatzeArray*)g_object_get_data (G_OBJECT (proxy), "KatzeArray");
|
||||||
if (!KATZE_IS_ARRAY (array))
|
if (KATZE_IS_ITEM (array))
|
||||||
{
|
{
|
||||||
g_object_set_data (G_OBJECT (proxy), "KatzeItem", array);
|
g_object_set_data (G_OBJECT (proxy), "KatzeItem", array);
|
||||||
g_signal_connect (proxy, "clicked",
|
g_signal_connect (proxy, "clicked",
|
||||||
|
|
Loading…
Reference in a new issue