From 1715825a2f329e529aaab8bc9fa9d62183863af4 Mon Sep 17 00:00:00 2001 From: pickten Date: Fri, 14 Apr 2017 17:52:35 -0400 Subject: [PATCH 1/2] Fix duplicate notif option bug Since I can't remove the option, it's now hidden. It's sort of silly. --- options.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/options.js b/options.js index 3daeda1a7..0b9228f5b 100644 --- a/options.js +++ b/options.js @@ -402,11 +402,11 @@ new Molpy.Option({ visability: 1 }); new Molpy.Option({ - name: 'loglength', - title: 'Log N notifications', + name: 'loglengthdup', + title: 'Log N notifications; somehow a duplicate was added in the work for 4.0 when this was supposed to be removed', range: 6, text: ['∞', '1','5','10','20','50','100'], - visibility: 1 + visibility: -1 }); From aa43e7f28039c1a3dff6dccededa3ea675bfab95 Mon Sep 17 00:00:00 2001 From: pickten Date: Fri, 14 Apr 2017 18:00:07 -0400 Subject: [PATCH 2/2] Fixed order of options --- options.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options.js b/options.js index 0b9228f5b..11dc5b558 100644 --- a/options.js +++ b/options.js @@ -195,7 +195,7 @@ new Molpy.Option({ name: 'loglength', title: 'Log N notifications', range: 6, - text: ['1','5','10','20','50','100','∞'], + text: ['∞', '1','5','10','20','50','100'], visibility: 1 });