Bladeren bron

fix: disabled icon color in grid header menu

Richard Shiue 2 jaren geleden
bovenliggende
commit
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),
     );
   }
 }