diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-06-27 11:30:46 -0400 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-07-02 10:10:19 -0400 |
| commit | a818954ee5d02b8723f5b48f458a0c76f9ba1935 (patch) | |
| tree | 86a892d029f463827f67f1d5a59061ade895aa86 /src/modinfodialog.cpp | |
| parent | 4b958d9efed3834ceaa57f6c50a1e8288eff01b0 (diff) | |
added explore menu item to conflict lists and filetree
changed filetree context menu to always show all items
added mnemonics to conflicts context menu
Diffstat (limited to 'src/modinfodialog.cpp')
| -rw-r--r-- | src/modinfodialog.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/modinfodialog.cpp b/src/modinfodialog.cpp index 7696023f..2772994c 100644 --- a/src/modinfodialog.cpp +++ b/src/modinfodialog.cpp @@ -66,6 +66,12 @@ bool canOpenFile(bool isArchive, const QString&) return !isArchive; } +bool canExploreFile(bool isArchive, const QString&) +{ + // can explore anything as long as it's not in an archive + return !isArchive; +} + bool canHideFile(bool isArchive, const QString& filename) { if (isArchive) { |
