diff options
author | Daniel Friesel <derf@finalrewind.org> | 2018-08-29 19:19:38 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2018-08-29 19:19:38 +0200 |
commit | 12c1253971b3635024b4571ec382a9ff75c7e605 (patch) | |
tree | 845a8c8994be760269eee92f003be40b1f762e66 /src/options.h | |
parent | bcefd10220b7da136ccff57b37d47e7ae7337013 (diff) | |
parent | dbc8dc8ceabdab55c5c8c74708af7788ade1c151 (diff) |
Merge branch 'no-cycle' of https://github.com/ulteq/feh into 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; |