Skip to content

Commit

Permalink
Fix spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
pakaoraki committed Mar 15, 2024
1 parent 636bcee commit 4737796
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions [email protected]/preferences/timerPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,18 +107,18 @@ class CaffeineTimerPage extends Adw.PreferencesPage {
const durationValues = variantDuration.deepUnpack();
this.shortTimerSelector = this.timerSpinRow(_('Short timer'),
60,
durationValues[0],// Short duration
durationValues[0], // Short duration
60,
maxValueSecond - 60*2);
maxValueSecond - 60 * 2);
this.mediumTimerSelector = this.timerSpinRow(_('Medium timer'),
60,
durationValues[1],// Medium duration
60*2,
durationValues[1], // Medium duration
60 * 2,
maxValueSecond - 60);
this.longTimerSelector = this.timerSpinRow(_('Long timer'),
60,
durationValues[2],// Long duration
60*3,
durationValues[2], // Long duration
60 * 3,
maxValueSecond);

// Enable / Disable Custom value
Expand Down

0 comments on commit 4737796

Please sign in to comment.