Skip to content

Commit 7d8ed97

Browse files
committed
refactor: put recurring settings in their own section in settings
1 parent 7eb4f46 commit 7d8ed97

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/Config/SettingsTab.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,10 +223,14 @@ export class SettingsTab extends PluginSettingTab {
223223
});
224224
});
225225

226+
// ---------------------------------------------------------------------------
227+
containerEl.createEl('h4', { text: 'Recurring task Settings' });
228+
// ---------------------------------------------------------------------------
229+
226230
new Setting(containerEl)
227231
.setName('Next recurrence appears on the line below')
228232
.setDesc(
229-
'Enabling this will make the next recurrence of a task appear on line below the completed task. Otherwise the next recurrence will appear on the line of the toggled task and the completed one below.',
233+
'Enabling this will make the next recurrence of a task appear on the line below the completed task. Otherwise the next recurrence will appear before the completed one.',
230234
)
231235
.addToggle((toggle) => {
232236
const { recurrenceOnNextLine: recurrenceOnNextLine } = getSettings();

0 commit comments

Comments
 (0)