diff options
author | Thomas White <taw@bitwiz.org.uk> | 2013-08-30 14:47:00 +0200 |
---|---|---|
committer | Thomas White <taw@bitwiz.org.uk> | 2013-08-30 14:47:00 +0200 |
commit | bad270c105bb5e7021ea850578903fda8e90d2e4 (patch) | |
tree | 0170f5f6ddd945f7c6b2310924e7749f969b3382 /src/frame.h | |
parent | d273b8aa021db863d944b2725a6777f0dcc9398b (diff) |
Add is_image field to struct frame
Diffstat (limited to 'src/frame.h')
-rw-r--r-- | src/frame.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/frame.h b/src/frame.h index 764cddc..6ee748b 100644 --- a/src/frame.h +++ b/src/frame.h @@ -111,6 +111,9 @@ struct frame /* True if this frame should be deleted on the next mouse click */ int empty; + + /* True if the aspect ratio of this frame should be maintained */ + int is_image; }; |