diff options
| author | Carlo Vanini <silhusk@gmail.com> | 2016-08-21 13:17:44 (GMT) |
|---|---|---|
| committer | Carlo Vanini <silhusk@gmail.com> | 2016-08-21 13:17:44 (GMT) |
| commit | e0123c8fc8b8982cb03792aaa6e4408b3462976d (patch) | |
| tree | d1ee75b0685fa9a1b23592381a0bfd49c8b9a716 | |
| parent | ca1379c2f8041f775625255018463a25f9c782b9 (diff) | |
hide purge button when marked for change
When a package with residual config was marked for purge, the purge
button was still shown. Hide it, like the other buttons.
| -rw-r--r-- | src/DetailsTabs/MainTab.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/DetailsTabs/MainTab.cpp b/src/DetailsTabs/MainTab.cpp index db4fa52..1b865f7 100644 --- a/src/DetailsTabs/MainTab.cpp +++ b/src/DetailsTabs/MainTab.cpp @@ -172,6 +172,7 @@ void MainTab::refresh() m_removeButton->hide(); m_upgradeButton->hide(); m_reinstallButton->hide(); + m_purgeButton->hide(); m_cancelButton->show(); } |
