From 3b6c6e92d641a59aa0d33b1c980edc10420effbf Mon Sep 17 00:00:00 2001 From: Richard Shiue <71320345+richardshiue@users.noreply.github.com> Date: Thu, 8 Sep 2022 20:57:19 +0800 Subject: [PATCH] fix: disabled icon color in grid header menu --- .../presentation/widgets/header/field_cell_action_sheet.dart | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/frontend/app_flowy/lib/plugins/grid/presentation/widgets/header/field_cell_action_sheet.dart b/frontend/app_flowy/lib/plugins/grid/presentation/widgets/header/field_cell_action_sheet.dart index 3991b841b8..8f11bb008f 100644 --- a/frontend/app_flowy/lib/plugins/grid/presentation/widgets/header/field_cell_action_sheet.dart +++ b/frontend/app_flowy/lib/plugins/grid/presentation/widgets/header/field_cell_action_sheet.dart @@ -167,7 +167,8 @@ class FieldActionCell extends StatelessWidget { onTap(); } }, - leftIcon: svgWidget(action.iconName(), color: theme.iconColor), + leftIcon: svgWidget(action.iconName(), + color: enable ? theme.iconColor : theme.disableIconColor), ); } }