浏览代码

fix: the grid cell border color didn't change after switch to new theme (#1564)

Co-authored-by: nathan <[email protected]>
Nathan.fooo 2 年之前
父节点
当前提交
2a75ad144a
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/cell_container.dart

+ 1 - 1
frontend/app_flowy/lib/plugins/grid/presentation/widgets/cell/cell_container.dart

@@ -30,7 +30,7 @@ class CellContainer extends StatelessWidget {
           cellStateNotifier!..onEnter = rowStateNotifier.onEnter,
       child: Selector<_CellContainerNotifier, bool>(
         selector: (context, notifier) => notifier.isFocus,
-        builder: (context, isFocus, _) {
+        builder: (privderContext, isFocus, _) {
           Widget container = Center(child: GridCellShortcuts(child: child));
 
           if (accessoryBuilder != null) {