From 88ce6e74a86c38ccd83d9c728eda484335392203 Mon Sep 17 00:00:00 2001 From: grummbeer Date: Mon, 5 Jun 2023 10:23:57 +0200 Subject: [PATCH] Page Install. Add icons to buttons on confirmation dialog. --- flutter/lib/desktop/pages/install_page.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flutter/lib/desktop/pages/install_page.dart b/flutter/lib/desktop/pages/install_page.dart index 1a9df8412..74f0e44dc 100644 --- a/flutter/lib/desktop/pages/install_page.dart +++ b/flutter/lib/desktop/pages/install_page.dart @@ -287,11 +287,13 @@ class _InstallPageBodyState extends State<_InstallPageBody> final btns = [ dialogButton( 'Cancel', + icon: Icon(Icons.close_rounded), onPressed: () => gFFI.dialogManager.dismissByTag(tag), isOutline: true, ), dialogButton( 'OK', + icon: Icon(Icons.done_rounded), onPressed: () { gFFI.dialogManager.dismissByTag(tag); do_install();