diff --git a/lib/model.dart b/lib/model.dart index 923f0f46..00ebba2e 100644 --- a/lib/model.dart +++ b/lib/model.dart @@ -603,7 +603,7 @@ class ContactInfoState extends ChangeNotifier { String? get acnCircuit => this._acnCircuit; set acnCircuit(String? acnCircuit) { this._acnCircuit = acnCircuit; - notifyListeners() + notifyListeners(); } // Indicated whether the conversation is archived, in which case it will diff --git a/lib/views/peersettingsview.dart b/lib/views/peersettingsview.dart index 96f15567..6606312d 100644 --- a/lib/views/peersettingsview.dart +++ b/lib/views/peersettingsview.dart @@ -62,7 +62,7 @@ class _PeerSettingsViewState extends State { 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);