Tor Circuit Info Display for P2P + Many Minor UI Fixups. #304

Merged
erinn merged 6 commits from getinfo into trunk 2022-01-17 23:05:12 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit d6ecf87255 - Show all commits

View File

@ -603,7 +603,7 @@ class ContactInfoState extends ChangeNotifier {
String? get acnCircuit => this._acnCircuit;
set acnCircuit(String? acnCircuit) {
this._acnCircuit = acnCircuit;
Review

notifyListeners();

notifyListeners();
notifyListeners()
notifyListeners();
}
// Indicated whether the conversation is archived, in which case it will

View File

@ -62,7 +62,7 @@ class _PeerSettingsViewState extends State<PeerSettingsView> {
return RichText(
textAlign: TextAlign.left,
text: TextSpan(
text: "$country",
text: country,
style: TextStyle(fontWeight: FontWeight.bold, fontSize: 10, fontFamily: "monospace"),
children: [TextSpan(text: " ($ip)", style: TextStyle(fontSize: 8, fontWeight: FontWeight.normal))]));
}).toList(growable: true);