+++ src/gui/optionsdlg.h @@ -44,6 +44,7 @@ { TOGGLE_PAUSE, OPEN_DEST, + PREVIEW, NO_ACTION }; +++ src/gui/optionsdlg.ui @@ -300,6 +300,11 @@ + Preview file + + + + No action @@ -325,6 +330,11 @@ + + Preview file + + + No action +++ src/gui/transferlistwidget.cpp @@ -363,6 +363,9 @@ else Utils::Misc::openPath(torrent->contentPath(true)); break; + case PREVIEW: + if (torrent->hasMetadata()) + new PreviewSelectDialog(this, torrent); } }