diff options
author | Thomas White <taw@bitwiz.org.uk> | 2011-11-22 21:04:26 +0100 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2011-11-22 21:04:26 +0100 |
commit | 4c98abb02ad47d13de2694f2bfe2e994f17b3095 (patch) | |
tree | ca3ca222d48f681132b32792a2672c2d8414255a /src/objects.c | |
parent | 096fb6d129ded7b7f72bc5b36c932fd84d45ed22 (diff) |
Let tools add stuff to the toolbar
Diffstat (limited to 'src/objects.c')
-rw-r--r-- | src/objects.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/objects.c b/src/objects.c index 36e7419..80b57a7 100644 --- a/src/objects.c +++ b/src/objects.c @@ -195,7 +195,10 @@ void realise_everything(struct presentation *p) { int i; + /* Realise all the tools */ + p->select_tool->realise(p->select_tool, p->drawingarea); p->text_tool->realise(p->text_tool, p->drawingarea); + p->image_tool->realise(p->image_tool, p->drawingarea); for ( i=0; i<p->num_slides; i++ ) { |