Skip to content

Commit

Permalink
Fix saving of user settings for spectrum
Browse files Browse the repository at this point in the history
  • Loading branch information
chmelevskij committed Mar 10, 2024
1 parent 9a2e7e7 commit bad87f7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/graph_spectrum.js
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,7 @@ var

function saveOneUserSetting(name, value) {
prefs.get('userSettings', function(data) {
data = data || {};
data[name] = value;
prefs.set('userSettings', data);
});
Expand Down

0 comments on commit bad87f7

Please sign in to comment.