summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2019-05-18 06:26:13 -0400
committerisanae <14251494+isanae@users.noreply.github.com>2019-05-18 06:26:13 -0400
commit0232435e0a2fed46c864cf241fb2c42d9682bfed (patch)
treeb1d510c1c022731b311a6634a7bc7d0df4a255a2 /src
parent6c470aff829bed12853321c25262b84934242098 (diff)
disabled unhide menu item in the conflict tree because hidden items are never shown
Diffstat (limited to 'src')
-rw-r--r--src/modinfodialog.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/modinfodialog.cpp b/src/modinfodialog.cpp
index b0035c02..9f35fc59 100644
--- a/src/modinfodialog.cpp
+++ b/src/modinfodialog.cpp
@@ -1542,9 +1542,11 @@ void ModInfoDialog::on_overwriteTree_customContextMenuRequested(const QPoint &po
menu.addAction(tr("Hide"), this, SLOT(hideConflictFiles()));
}
- if (enableUnhide) {
- menu.addAction(tr("Un-Hide"), this, SLOT(unhideConflictFiles()));
- }
+ // disabling this for now, because hidden files are never shows in this list
+ // at all; if this ever changes, this should be added back
+ //if (enableUnhide) {
+ // menu.addAction(tr("Un-Hide"), this, SLOT(unhideConflictFiles()));
+ //}
if (enableOpen) {
menu.addAction(tr("Open/Execute"), this, SLOT(openOverwriteDataFile()));