Disable task mutli-select on kanban
This commit is contained in:
parent
305e38a5c0
commit
e0c78c3324
|
|
@ -88,7 +88,10 @@ class ListScaffold extends StatelessWidget {
|
|||
Expanded(
|
||||
child: IconButton(
|
||||
icon: Icon(Icons.check_box),
|
||||
onPressed: () => onCheckboxPressed(),
|
||||
onPressed: state.prefState.showKanban &&
|
||||
state.uiState.mainRoute == '${EntityType.task}'
|
||||
? null
|
||||
: () => onCheckboxPressed(),
|
||||
)),
|
||||
...appBarLeadingActions,
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in New Issue