Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
alainm23 committed Dec 26, 2024
1 parent 1989fd9 commit e8228c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Dialogs/PreferencesDialog.vala
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ public class Dialogs.PreferencesDialog : Granite.Dialog {
sensitive = true;
} else if (long_break_scale.current_value != Default.LONG_BREAK_DURATION) {
sensitive = true;
} else if (long_break_delay_scale.current_value != Default.LONG_BREAK_DELAY) {
} else if (long_break_delay_scale.current_value != Default.LONG_BREAK_DELAY) {
sensitive = true;
}

Expand Down
2 changes: 1 addition & 1 deletion src/Enums.vala
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public enum Status {
}

private int break_messages_index = 0;
private const string[] break_messages = {
private const string[] break_messages = { // vala-lint=naming-convention
N_("Go have a coffee"),
N_("Drink some water"),
N_("Get up and dance!"),
Expand Down

0 comments on commit e8228c4

Please sign in to comment.