summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2010-10-24 16:24:37 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2010-10-24 16:24:37 +0000
commitc4ebfa24d8c40f5f33681ea37f3d5b3eeee3591e (patch)
tree2484b818bd2481748a440bb160fbc349afce15a9 /desktop
parentb734c12fd6d38d02b2daa5cba69e69b7dcf94182 (diff)
downloadnetsurf-c4ebfa24d8c40f5f33681ea37f3d5b3eeee3591e.tar.gz
netsurf-c4ebfa24d8c40f5f33681ea37f3d5b3eeee3591e.tar.bz2
Don't expand the oldest global history entries by default.
svn path=/trunk/netsurf/; revision=10902
Diffstat (limited to 'desktop')
-rw-r--r--desktop/history_global_core.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/desktop/history_global_core.c b/desktop/history_global_core.c
index b8cd9a5b0..680e75447 100644
--- a/desktop/history_global_core.c
+++ b/desktop/history_global_core.c
@@ -299,11 +299,6 @@ bool history_global_initialise(struct tree *tree)
global_history_initialised = false;
tree_set_node_expanded(global_history_tree, global_history_tree_root,
false, true, true);
- first = tree_node_get_child(global_history_tree_root);
- if (first != NULL)
- tree_set_node_expanded(global_history_tree, first,
- true, false, false);
-
return true;
}