From 7b30c7235b9475932b3dfdcbe3b283d839c71eba Mon Sep 17 00:00:00 2001 From: Thibault Deckers Date: Sat, 19 Aug 2023 23:34:35 +0200 Subject: [PATCH] #711 viewer: added external export actions to available quick actions --- CHANGELOG.md | 1 + lib/widgets/settings/viewer/viewer_actions_editor.dart | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6dcb544a7..8fde857c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ All notable changes to this project will be documented in this file. - support for animated AVIF (requires rescan) - Collection: filtering by rating range - Viewer: optionally show histogram on overlay +- Viewer: external export actions available as quick actions - About: data usage ### Changed diff --git a/lib/widgets/settings/viewer/viewer_actions_editor.dart b/lib/widgets/settings/viewer/viewer_actions_editor.dart index 912c13173..824d63fac 100644 --- a/lib/widgets/settings/viewer/viewer_actions_editor.dart +++ b/lib/widgets/settings/viewer/viewer_actions_editor.dart @@ -27,7 +27,7 @@ class ViewerActionEditorPage extends StatelessWidget { EntryAction.flip, ], [ - ...EntryActions.exportInternal, + ...EntryActions.export, ...EntryActions.video.whereNot((v) => v == EntryAction.videoSettings), ], EntryActions.commonMetadataActions,