diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-08-29 19:32:59 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-08-29 19:32:59 +0200 |
commit | 115a74b6c17d4b9dd61a7509d963c4f64e2e25c7 (patch) | |
tree | d788d0852638283c304129735151e41e73b72df9 /src/options.h | |
parent | bcefd10220b7da136ccff57b37d47e7ae7337013 (diff) | |
parent | 3ed38d4b8180f8763c4115ff2a27b0d032530f9e (diff) |
Merge branch 'ulteq-no-cycle'
Diffstat (limited to 'src/options.h')
-rw-r--r-- | src/options.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/options.h b/src/options.h index 936b4bd..606b8e6 100644 --- a/src/options.h +++ b/src/options.h @@ -27,6 +27,12 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #ifndef OPTIONS_H #define OPTIONS_H +enum on_last_slide_action { + ON_LAST_SLIDE_RESUME = 0, + ON_LAST_SLIDE_QUIT, + ON_LAST_SLIDE_HOLD +}; + struct __fehoptions { unsigned char multiwindow; unsigned char montage; @@ -68,7 +74,7 @@ struct __fehoptions { unsigned char draw_actions; unsigned char draw_info; unsigned char cache_thumbnails; - unsigned char cycle_once; + unsigned char on_last_slide; unsigned char hold_actions[10]; unsigned char text_bg; unsigned char no_fehbg; |