Skip to content

Commit

Permalink
no longer disable magic buttons during reset timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkoole committed Oct 26, 2023
1 parent b273eaf commit b06f112
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/screens/home.dart
Original file line number Diff line number Diff line change
Expand Up @@ -204,21 +204,21 @@ class _HomeScreenState extends State<HomeScreen> {
icon: const Icon(
Icons.work,
),
onPressed: _enableAppBarButtons ? _plusWorkTime : null,
onPressed: _plusWorkTime,
tooltip: 'Add $adjustIntervalMin minutes to Worktime',
),
IconButton(
icon: const Icon(
Icons.coffee,
),
onPressed: _enableAppBarButtons ? _plusBreakTime : null,
onPressed: _plusBreakTime,
tooltip: 'Add ${_adjustInterval ~/ 60} minutes to Breaktime',
),
IconButton(
icon: const Icon(
Icons.auto_fix_high,
),
onPressed: _enableAppBarButtons ? _moveBreakToWorkTime : null,
onPressed: _moveBreakToWorkTime,
tooltip:
'Move ${_adjustInterval ~/ 60} minutes from Break to Worktime',
),
Expand Down

0 comments on commit b06f112

Please sign in to comment.