aboutsummaryrefslogtreecommitdiff
path: root/c/episodelistview.cpp
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2023-01-23 01:05:37 +0100
committerJohn Ankarström <john@ankarstrom.se>2023-01-23 01:06:58 +0100
commitab440290c6fd84ca1c9b7240ac9c90147d4660eb (patch)
treea96a66bdabb8e69cceade174c17faa6a2d768fba /c/episodelistview.cpp
parentde4e3d7654bf97cdae844d16c6ff5408698539ea (diff)
downloadEpisodeBrowser-ab440290c6fd84ca1c9b7240ac9c90147d4660eb.tar.gz
Add Show In Explorer context menu item.data
Diffstat (limited to 'c/episodelistview.cpp')
-rw-r--r--c/episodelistview.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/c/episodelistview.cpp b/c/episodelistview.cpp
index 320f98f..e6ff288 100644
--- a/c/episodelistview.cpp
+++ b/c/episodelistview.cpp
@@ -74,6 +74,10 @@ void EpisodeListView::HandleContextMenu(const WORD command)
OpenOnline(parent.cfg, lvi.lParam);
break;
+ case IDM_SHOW_IN_EXPLORER:
+ ShowInExplorer(parent.cfg, parent.fvElv.At(lvi.lParam-1));
+ break;
+
case IDM_TOGGLE:
e.bWatched = !e.bWatched;
break;