aboutsummaryrefslogtreecommitdiff
path: root/libstorycode/slide.c
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.me.uk>2019-04-28 22:34:22 +0200
committerThomas White <taw@bitwiz.me.uk>2019-04-28 22:34:22 +0200
commit6e9dba4eca2d65c7cef727fccbc1550c11a61737 (patch)
tree5d2c435a38138557cff698bf8bc562c05222e961 /libstorycode/slide.c
parent516191143294dce6f373819422b9672dc630dca1 (diff)
Get rid of SlideItem->resizable
Diffstat (limited to 'libstorycode/slide.c')
-rw-r--r--libstorycode/slide.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/libstorycode/slide.c b/libstorycode/slide.c
index 0e11785..f5c4c9c 100644
--- a/libstorycode/slide.c
+++ b/libstorycode/slide.c
@@ -83,7 +83,6 @@ SlideItem *slide_add_image(Slide *s, char *filename, struct frame_geom geom)
item->type = SLIDE_ITEM_IMAGE;
item->geom = geom;
item->filename = filename;
- item->resizable = 1;
return item;
}
@@ -115,12 +114,6 @@ static SlideItem *add_text_item(Slide *s, char **text, int n_text, struct frame_
item->geom = geom;
item->align = alignment;
- if ( slide_item == SLIDE_ITEM_TEXT ) {
- item->resizable = 1;
- } else {
- item->resizable = 0;
- }
-
return item;
}