summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2005-03-18 23:52:38 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2005-03-18 23:52:38 +0000
commit036622f35fc98ad154a982f1dd6f384f66d79707 (patch)
tree89f47a06134b137a24df04417799330eff9a1cfb /desktop
parent793bb9119a04a109c2ac55200f0d4a00d026dee0 (diff)
downloadnetsurf-036622f35fc98ad154a982f1dd6f384f66d79707.tar.gz
netsurf-036622f35fc98ad154a982f1dd6f384f66d79707.tar.bz2
[project @ 2005-03-18 23:52:38 by rjw]
Allow windows to be resized to an absolute minimum (toolbars collapse.) svn path=/import/netsurf/; revision=1541
Diffstat (limited to 'desktop')
-rw-r--r--desktop/tree.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/desktop/tree.h b/desktop/tree.h
index d2e1e5cfd..68d97f96d 100644
--- a/desktop/tree.h
+++ b/desktop/tree.h
@@ -23,6 +23,7 @@
#define NODE_INSTEP 40
struct node_sprite;
+struct toolbar;
typedef enum {
NODE_ELEMENT_TEXT, /* <-- Text only */
@@ -82,6 +83,7 @@ struct tree {
struct node_element *editing; /* <-- Node element being edited */
char edit_buffer[256]; /* <-- Editing buffer */
struct node *temp_selection; /* <-- Temporarily selected node */
+ struct toolbar *toolbar; /* <-- Tree toolbar */
};