浏览代码

fix: disabled icon color in grid header menu

Richard Shiue 2 年之前
父节点
当前提交
3b6c6e92d6

+ 2 - 1
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),
     );
   }
 }