Skip to content

Commit c7140ad

Browse files
authored
Fix label rendering (#46)
1 parent 7990c2a commit c7140ad

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.3.1] - 2020-09-18
9+
10+
### 🐛 Bug Fixes
11+
12+
- Fixed an issue where the 'Render labels' setting did not work.
13+
814
## [1.3.0] - 2020-09-17
915

1016
### ✨ Features

src/settings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ export function SettingsTab<TBase extends Settings>(Base: TBase) {
175175
configure: (setting) => {
176176
setting.setValue(this.plugin.options.renderLabels);
177177
setting.onChange((value) => {
178-
this.plugin.writeOptions((old) => (old.renderLabelsIcon = value));
178+
this.plugin.writeOptions((old) => (old.renderLabels = value));
179179
});
180180
},
181181
});

0 commit comments

Comments
 (0)