From 94d43bc3773786fd7245c68c0ecfa06d90a93319 Mon Sep 17 00:00:00 2001 From: Oliver Date: Sat, 11 Jan 2025 16:40:17 +1100 Subject: [PATCH] Tweak server profile edit window (#596) * Tweak server profile edit window * Fix typo --- lib/settings/select_server.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/settings/select_server.dart b/lib/settings/select_server.dart index 323ce8f6..2244cad8 100644 --- a/lib/settings/select_server.dart +++ b/lib/settings/select_server.dart @@ -315,10 +315,11 @@ class _ProfileEditState extends State { Widget build(BuildContext context) { return Scaffold( appBar: AppBar( + backgroundColor: COLOR_APP_BAR, title: Text(widget.profile == null ? L10().profileAdd : L10().profileEdit), actions: [ IconButton( - icon: Icon(TablerIcons.device_floppy), + icon: Icon(TablerIcons.circle_check), onPressed: () async { if (formKey.currentState!.validate()) { formKey.currentState!.save();