Skip to content

Commit

Permalink
Merge pull request #38 from vasilecampeanu/develop
Browse files Browse the repository at this point in the history
feat: Fix description.
  • Loading branch information
vasilecampeanu authored May 21, 2023
2 parents dfc5fe8 + f231f24 commit 1777b64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ export class WeaverSettingTab extends PluginSettingTab {

new Setting(containerEl)
.setName('Identation Guides')
.setDesc('Show Identation Guides on Thread View.')
.setDesc('Display identation guides.')
.addToggle(v => v
.setValue(this.plugin.settings.threadViewIdentationGuides)
.onChange(async (value) => {
Expand All @@ -190,7 +190,7 @@ export class WeaverSettingTab extends PluginSettingTab {

new Setting(containerEl)
.setName('Compact Mode')
.setDesc('Show Identation Guides on Thread View.')
.setDesc('Show only the title of the conversation.')
.addToggle(v => v
.setValue(this.plugin.settings.threadViewCompactMode)
.onChange(async (value) => {
Expand Down

0 comments on commit 1777b64

Please sign in to comment.