Actually remove history items with the Delete tool button
This commit is contained in:
parent
58b40bce38
commit
0fb55faf37
1 changed files with 6 additions and 0 deletions
|
@ -2491,6 +2491,7 @@ midori_browser_model_remove_item (GtkTreeModel* model,
|
|||
{
|
||||
GtkTreeIter child_iter;
|
||||
KatzeItem* child;
|
||||
KatzeArray* parent;
|
||||
gint i, n;
|
||||
|
||||
if (KATZE_IS_ARRAY (item))
|
||||
|
@ -2504,6 +2505,11 @@ midori_browser_model_remove_item (GtkTreeModel* model,
|
|||
while (gtk_tree_model_iter_nth_child (model, &child_iter, iter, 0))
|
||||
gtk_tree_store_remove (GTK_TREE_STORE (model), &child_iter);
|
||||
}
|
||||
else
|
||||
{
|
||||
parent = katze_item_get_parent (item);
|
||||
katze_array_remove_item (parent, item);
|
||||
}
|
||||
|
||||
gtk_tree_store_remove (GTK_TREE_STORE (model), iter);
|
||||
g_object_unref (item);
|
||||
|
|
Loading…
Reference in a new issue