fix AUR missing deps text | showing app type in history dialog

This commit is contained in:
Vinicius Moreira
2019-09-20 12:47:10 -03:00
parent 2812834abe
commit 04846928eb
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ class HistoryDialog(QDialog):
def __init__(self, history: PackageHistory, icon_cache: MemoryCache, locale_keys: dict):
super(HistoryDialog, self).__init__()
self.setWindowTitle('{} - {} '.format(locale_keys['popup.history.title'], history.pkg.name))
self.setWindowTitle('{} - {} ({})'.format(locale_keys['popup.history.title'], history.pkg.name, history.pkg.get_type()))
layout = QVBoxLayout()
self.setLayout(layout)