diff --git a/TODO.txt b/TODO.txt index 9601e2a8f..aff9719a9 100644 --- a/TODO.txt +++ b/TODO.txt @@ -57,7 +57,7 @@ H [ ] Distant chat should work with shared identities Identities: [X] "Owned by you" => "Owned by node [nodename]" [X] Bold face should only be used for keys with admin credentials -E [ ] reputations are not used yet. We should hide them. +E [X] reputations are not used yet. We should hide them. H [ ] Add timeout to Identities that are unused. Need to keep a time stamp list, updated whenever the identity is used for checking signatures. This should be extented to any group and stored into meta data. Would allow to diff --git a/retroshare-gui/src/gui/Identity/IdDialog.cpp b/retroshare-gui/src/gui/Identity/IdDialog.cpp index 8fa7245bd..725c0e8f7 100644 --- a/retroshare-gui/src/gui/Identity/IdDialog.cpp +++ b/retroshare-gui/src/gui/Identity/IdDialog.cpp @@ -226,6 +226,10 @@ IdDialog::IdDialog(QWidget *parent) : // load settings processSettings(true); + + // hide reputation sice it's currently unused + ui->reputationGroupBox->hide(); + ui->tweakGroupBox->hide(); } IdDialog::~IdDialog()